Skip to content

Commit 8e9da06

Browse files
committed
Silenced archive creation output (prints output on local testing)
1 parent 9884dd7 commit 8e9da06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Symfony/src/Codebender/CompilerBundle/Handler/CompilerHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ private function createArchive($compiler_dir, $TEMP_DIR, $ARCHIVE_DIR, &$ARCHIVE
437437
}
438438

439439
// The archive files include all the files of the project and the libraries needed to compile it
440-
exec("tar -zcvf $ARCHIVE_PATH -C $TEMP_DIR/ ". pathinfo($compiler_dir, PATHINFO_BASENAME), $output, $ret_var);
440+
exec("tar -zcf $ARCHIVE_PATH -C $TEMP_DIR/ ". pathinfo($compiler_dir, PATHINFO_BASENAME), $output, $ret_var);
441441

442442
if ($ret_var !=0)
443443
return array("success" => false, "message" => "Failed to archive project files.");

0 commit comments

Comments
 (0)