From b7202bbb753113b3269065ace31526ef9ec89c68 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Tue, 13 Apr 2010 19:58:12 -0700 Subject: [PATCH] [Command Line] The help command was not including the global options --- lib/compass/commands/help.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/compass/commands/help.rb b/lib/compass/commands/help.rb index ae0b1d17..f3fa2dbc 100644 --- a/lib/compass/commands/help.rb +++ b/lib/compass/commands/help.rb @@ -58,6 +58,7 @@ To get help on a particular command please specify the command. class << self def option_parser(arguments) parser = Compass::Exec::CommandOptionParser.new(arguments) + parser.extend(Compass::Exec::GlobalOptionsParser) parser.extend(HelpOptionsParser) end def usage