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:
parent
80f7dfe1ba
commit
29f0f568d3
2 changed files with 8 additions and 10 deletions
|
@ -8,16 +8,11 @@
|
||||||
},
|
},
|
||||||
"url": "http://www.pluxml.org",
|
"url": "http://www.pluxml.org",
|
||||||
"license": "free",
|
"license": "free",
|
||||||
"maintainers": [
|
"maintainer": {
|
||||||
{
|
|
||||||
"name": "matlink",
|
|
||||||
"email": "matlink@matlink.fr"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Moul",
|
"name": "Moul",
|
||||||
"email": "moul@moul.re"
|
"email": "moul@moul.re",
|
||||||
}
|
"url": "https://moul.re"
|
||||||
],
|
},
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">> 2.4.0"
|
"yunohost": ">> 2.4.0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue