We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a50341 commit 01eb853Copy full SHA for 01eb853
lib/csscss/cli.rb
@@ -64,7 +64,7 @@ def execute
64
end
65
66
def parse(argv)
67
- opts = OptionParser.new do |opts|
+ options = OptionParser.new do |opts|
68
opts.banner = "Usage: csscss [files..]"
69
opts.version = Csscss::VERSION
70
@@ -128,11 +128,11 @@ def parse(argv)
128
print_help(opts)
129
130
131
- opts.parse!(argv)
+ options.parse!(argv)
132
133
- print_help(opts) if argv.empty?
+ print_help(options) if argv.empty?
134
rescue OptionParser::ParseError
135
- print_help(opts)
+ print_help(options)
136
137
138
def print_help(opts)
0 commit comments