1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/privatebin_ynh.git synced 2024-09-03 20:15:56 +02:00

Merge pull request #4 from opi/master

[fix] Add quote around variable.
This commit is contained in:
Alexis Gavoty 2014-07-23 10:04:01 +02:00
commit d00d239329
2 changed files with 5 additions and 5 deletions

View file

@ -34,10 +34,10 @@ sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
sudo yunohost app setting zerobin is_public -v "$is_public"
if [ $is_public = "Yes" ];
sudo yunohost app setting zerobin is_public -v "$is_public"
if [ "$is_public" = "Yes" ];
then
sudo yunohost app setting zerobin skipped_uris -v "/"
sudo yunohost app setting zerobin skipped_uris -v "/"
fi
sudo service nginx reload

View file

@ -29,9 +29,9 @@ sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
if [ $is_public = "Yes" ];
if [ "$is_public" = "Yes" ];
then
sudo yunohost app setting zerobin skipped_uris -v "/"
sudo yunohost app setting zerobin skipped_uris -v "/"
fi
sudo service nginx reload