Make old CLI deprecation warning red

This commit is contained in:
Alexander Kahn 2010-04-23 15:40:09 -04:00
parent e2e5ce9b76
commit 887cbfc61c

View File

@ -5,7 +5,9 @@ module Compass::Exec
if Compass::Commands.command_exists? arguments.first
SubCommandUI
else
Haml::Util.haml_warn "WARNING: This interface is deprecated. Please use the new subcommand interface.\nSee `compass help` for more information.\n"
Compass::Logger.new.red do
Haml::Util.haml_warn "WARNING: This interface is deprecated. Please use the new subcommand interface.\nSee `compass help` for more information.\n"
end
SwitchUI
end
end