1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpsysinfo_ynh.git synced 2024-09-03 19:56:43 +02:00

Add quiet parameter to wget

This commit is contained in:
inrepublica 2016-06-01 18:46:57 +02:00
parent 65626fea62
commit 1df61e1d8b
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|| ynh_die "Path not available: ${domain}${path}"
# Download source, check md5, untar, copy it
sudo wget https://github.com/phpsysinfo/phpsysinfo/archive/v$version.tar.gz -O /tmp/phpsysinfo.tar.gz
sudo wget -q https://github.com/phpsysinfo/phpsysinfo/archive/v$version.tar.gz -O /tmp/phpsysinfo.tar.gz
# Check md5
md5_check=($(md5sum /tmp/phpsysinfo.tar.gz))

View file

@ -19,7 +19,7 @@ language=$(ynh_app_setting_get "$app" language)
display_mode=$(ynh_app_setting_get "$app" display_mode)
# Download source, check md5, untar, copy it
sudo wget https://github.com/phpsysinfo/phpsysinfo/archive/v$version.tar.gz -O /tmp/phpsysinfo.tar.gz
sudo wget -q https://github.com/phpsysinfo/phpsysinfo/archive/v$version.tar.gz -O /tmp/phpsysinfo.tar.gz
# Check md5
md5_check=($(md5sum /tmp/phpsysinfo.tar.gz))