mirror of
https://github.com/YunoHost-Apps/etherpad_mypads_ynh.git
synced 2024-09-03 18:36:09 +02:00
manifest.toml: bash being bash .. we can't use the foo && bar syntax, otherwise that triggers exit code 1 (error) when the condition fails ..
This commit is contained in:
parent
a40e817cb7
commit
e3186acf0f
1 changed files with 7 additions and 3 deletions
|
@ -100,8 +100,12 @@ ram.runtime = "50M"
|
||||||
[resources.apt]
|
[resources.apt]
|
||||||
packages = "mariadb-server"
|
packages = "mariadb-server"
|
||||||
packages_from_raw_bash = """
|
packages_from_raw_bash = """
|
||||||
[[ "$export" == "libreoffice" ]] && echo "unoconv libreoffice-writer"
|
if [[ "$export" == "libreoffice" ]]
|
||||||
[[ "$export" == "abiword" ]] && echo "abiword"
|
then
|
||||||
|
echo "unoconv libreoffice-writer"
|
||||||
|
elif [[ "$export" == "abiword" ]]
|
||||||
|
echo "abiword"
|
||||||
|
fi
|
||||||
"""
|
"""
|
||||||
|
|
||||||
[resources.database]
|
[resources.database]
|
||||||
|
|
Loading…
Add table
Reference in a new issue