aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cask/lib/hbc/cli.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cli.rb b/Library/Homebrew/cask/lib/hbc/cli.rb
index b2883334c..a77feff29 100644
--- a/Library/Homebrew/cask/lib/hbc/cli.rb
+++ b/Library/Homebrew/cask/lib/hbc/cli.rb
@@ -230,7 +230,7 @@ module Hbc
return if @command == "help" && @args.empty?
- unknown_command = @command == "help" ? @args.first : @command
+ unknown_command = (@command == "help") ? @args.first : @command
raise ArgumentError, "Unknown command: #{unknown_command}"
end