Be silent when downloading composer

This commit is contained in:
Starbeamrainbowlabs 2019-07-18 23:53:18 +01:00
parent 1e24f85888
commit 39309eae9f
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

2
build
View File

@ -92,7 +92,7 @@ task_download-composer() {
task_begin "Downloading composer";
execute curl "https://getcomposer.org/composer.phar" -o "${cache_dir}/composer"; exit_code=$?;
execute curl -sS "https://getcomposer.org/composer.phar" -o "${cache_dir}/composer"; exit_code=$?;
chmod +x "${cache_dir}/composer";
task_end ${exit_code};
}