diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2013-05-02 05:01:49 -0700 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2013-05-02 05:01:49 -0700 |
commit | 1afb20fb274ab07f7a7f722e460c42227f4ceaac (patch) | |
tree | 9e9702c1200c0a9c818c8d501854a314896abbbe | |
parent | 8b9fac21e0a21d8136916c83b45b2659da9514e3 (diff) | |
parent | c669957598b03596a2180c777e1b77bf8c2754b0 (diff) | |
download | bacon-1afb20fb274ab07f7a7f722e460c42227f4ceaac.tar.gz bacon-1afb20fb274ab07f7a7f722e460c42227f4ceaac.tar.xz bacon-1afb20fb274ab07f7a7f722e460c42227f4ceaac.zip |
Merge pull request #17 from tbuehlmann/master
Removed Ruby warning
-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 |