[Command Line] The help command was not including the global options

This commit is contained in:
Chris Eppstein 2010-04-13 19:58:12 -07:00
parent 20c2c05a1d
commit b7202bbb75

View File

@ -58,6 +58,7 @@ To get help on a particular command please specify the command.
class << self class << self
def option_parser(arguments) def option_parser(arguments)
parser = Compass::Exec::CommandOptionParser.new(arguments) parser = Compass::Exec::CommandOptionParser.new(arguments)
parser.extend(Compass::Exec::GlobalOptionsParser)
parser.extend(HelpOptionsParser) parser.extend(HelpOptionsParser)
end end
def usage def usage