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:
parent
65626fea62
commit
1df61e1d8b
2 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue