This commit is contained in:
Andrés Montañez
2014-11-01 19:31:04 -02:00
parent 40e8c33846
commit c34fa53af5
13 changed files with 48 additions and 48 deletions
+2 -2
View File
@@ -67,7 +67,7 @@ class ListCommand extends AbstractCommand
sort($environments);
if (count($environments) > 0) {
Console::output('<dark_gray>These are your configured environments:</dark_gray>', 1, 1);
Console::output('<bold>These are your configured environments:</bold>', 1, 1);
foreach ($environments as $environment) {
Console::output('* <light_red>' . $environment . '</light_red>', 2, 1);
}
@@ -75,7 +75,7 @@ class ListCommand extends AbstractCommand
$exitCode = 0;
} else {
Console::output('<dark_gray>You don\'t have any environment configured.</dark_gray>', 1, 2);
Console::output('<bold>You don\'t have any environment configured.</bold>', 1, 2);
}
return $exitCode;