Skip to content

Commit

Permalink
Disallow --fix when in taps too
Browse files Browse the repository at this point in the history
Co-authored-by: Bo Anderson <[email protected]>
  • Loading branch information
issyl0 and Bo98 committed Aug 17, 2024
1 parent feedc5c commit de427d0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Library/Homebrew/dev-cmd/typecheck.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ class Typecheck < AbstractCommand
def run
if (args.dir.present? || args.file.present?) && args.named.present?
raise UsageError, "Cannot use `--dir` or `--file` when specifying a tap."
elseif args.fix? && args.named.present?
raise UsageError, "Cannot use `--fix` when specifying a tap."
end

update = args.update? || args.update_all?
Expand Down

0 comments on commit de427d0

Please sign in to comment.