Skip to content
This repository has been archived by the owner on Jan 6, 2020. It is now read-only.

Commit

Permalink
Add line breaks after error output
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek committed Feb 17, 2012
1 parent 134cb22 commit e0df900
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Composer/ScriptHandler.php
Expand Up @@ -26,7 +26,7 @@ public static function buildBootstrap($event)
$appDir = $extra['symfony-app-dir'];

if (!is_dir($appDir)) {
echo 'The symfony-app-dir ('.$appDir.') specified in composer.json was not found in '.getcwd().', can not build bootstrap file.';
echo 'The symfony-app-dir ('.$appDir.') specified in composer.json was not found in '.getcwd().', can not build bootstrap file.'.PHP_EOL;
return;
}

Expand All @@ -39,7 +39,7 @@ public static function clearCache($event)
$appDir = $extra['symfony-app-dir'];

if (!is_dir($appDir)) {
echo 'The symfony-app-dir ('.$appDir.') specified in composer.json was not found in '.getcwd().', can not clear the cache.';
echo 'The symfony-app-dir ('.$appDir.') specified in composer.json was not found in '.getcwd().', can not clear the cache.'.PHP_EOL;
return;
}

Expand All @@ -53,7 +53,7 @@ public static function installAssets($event)
$webDir = $extra['symfony-web-dir'];

if (!is_dir($webDir)) {
echo 'The symfony-web-dir ('.$webDir.') specified in composer.json was not found in '.getcwd().', can not install assets.';
echo 'The symfony-web-dir ('.$webDir.') specified in composer.json was not found in '.getcwd().', can not install assets.'.PHP_EOL;
return;
}

Expand Down

0 comments on commit e0df900

Please sign in to comment.