mirror of
https://github.com/YunoHost-Apps/bozon_ynh.git
synced 2024-09-03 18:16:09 +02:00
Remove useless echo
This commit is contained in:
parent
3130eaa185
commit
852af0350f
2 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ sudo chown -R www-data: $data_path/thumbs
|
|||
|
||||
# configure nginx settings
|
||||
## file upload size limit
|
||||
postsize=$(echo "${filesize%?}.1${filesize: -1}")
|
||||
postsize=${filesize%?}.1${filesize: -1}
|
||||
sudo sed -i "s@YNH_FILE_SIZE@$filesize@g" ../conf/nginx.conf
|
||||
sudo sed -i "s@YNH_POST_SIZE@$postsize@g" ../conf/nginx.conf
|
||||
## path
|
||||
|
|
|
@ -39,7 +39,7 @@ sudo rm -R $parent_path/BoZoN-$stable
|
|||
|
||||
# configure nginx settings
|
||||
## file upload size limit
|
||||
postsize=$(echo "${filesize%?}.1${filesize: -1}")
|
||||
postsize=${filesize%?}.1${filesize: -1}
|
||||
sudo sed -i "s@YNH_FILE_SIZE@$filesize@g" ../conf/nginx.conf
|
||||
sudo sed -i "s@YNH_POST_SIZE@$postsize@g" ../conf/nginx.conf
|
||||
## path
|
||||
|
|
Loading…
Reference in a new issue