mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
Be silent when downloading composer
This commit is contained in:
parent
1e24f85888
commit
39309eae9f
1 changed files with 1 additions and 1 deletions
2
build
2
build
|
@ -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};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue