1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/glowingbear_ynh.git synced 2024-09-03 18:36:20 +02:00

Merge pull request #4 from yalh76/patch-1

Fix package_linter error
This commit is contained in:
Maniack Crudelis 2019-06-01 13:21:50 +02:00 committed by GitHub
commit d3810aa8ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@
"email": "jodeko@riseup.net" "email": "jodeko@riseup.net"
}, },
"requirements": { "requirements": {
"yunohost": ">> 2.4.0" "yunohost": ">> 2.6.4"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [

View file

@ -9,8 +9,8 @@ main() {
local deploy_path=$(ynh_app_setting_get $app deploy_path) local deploy_path=$(ynh_app_setting_get $app deploy_path)
local nginx_conf="/etc/nginx/conf.d/${domain}.d/${app}.conf" local nginx_conf="/etc/nginx/conf.d/${domain}.d/${app}.conf"
sudo rm -rf $deploy_path ynh_secure_remove $deploy_path
sudo rm -f $nginx_conf ynh_secure_remove $nginx_conf
sudo service nginx reload sudo service nginx reload
} }