diff options
-rwxr-xr-x | bin/bacon | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bacon b/bin/bacon index 4baca67..bff060a 100755 --- a/bin/bacon +++ b/bin/bacon @@ -8,7 +8,7 @@ module Bacon; end automatic = false output = 'SpecDoxOutput' -opts = OptionParser.new("", 24, ' ') { |opts| +options = OptionParser.new("", 24, ' ') { |opts| opts.banner = "Usage: bacon [options] [files | -a] [-- untouched arguments]" opts.separator "" @@ -103,7 +103,7 @@ if automatic end if files.empty? - puts opts.banner + puts options.banner exit 1 end |