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

[fix] linter: set 'moul' as maintainer. Add 'set -u' on remove script.

This commit is contained in:
Moul 2017-04-05 18:59:52 +02:00
parent 80f7dfe1ba
commit 29f0f568d3
2 changed files with 8 additions and 10 deletions

View file

@ -8,16 +8,11 @@
}, },
"url": "http://www.pluxml.org", "url": "http://www.pluxml.org",
"license": "free", "license": "free",
"maintainers": [ "maintainer": {
{ "name": "Moul",
"name": "matlink", "email": "moul@moul.re",
"email": "matlink@matlink.fr" "url": "https://moul.re"
}, },
{
"name": "Moul",
"email": "moul@moul.re"
}
],
"requirements": { "requirements": {
"yunohost": ">> 2.4.0" "yunohost": ">> 2.4.0"
}, },

View file

@ -1,5 +1,8 @@
#!/bin/bash #!/bin/bash
# Exit and treat unset variables as an error
set -u
# Source YunoHost helpers # Source YunoHost helpers
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers