diff --git a/src/Composer/ScriptHandler.php b/src/Composer/ScriptHandler.php index 99aa1ea..4acfa81 100644 --- a/src/Composer/ScriptHandler.php +++ b/src/Composer/ScriptHandler.php @@ -67,12 +67,7 @@ protected static function executeCommand(Event $event, $console_dir, $cmd, $time }); if (!$process->isSuccessful()) { - throw new \RuntimeException(sprintf( - "An error occurred when executing the \"%s\" command:\n\n%s\n\n%s.", - escapeshellarg($cmd), - $process->getOutput(), - $process->getErrorOutput() - )); + throw new \RuntimeException(sprintf("An error occurred when executing the \"%s\" command:\n\n%s\n\n%s.", escapeshellarg($cmd), $process->getOutput(), $process->getErrorOutput())); } }