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,10 +100,14 @@ ram.runtime = "50M"
|
|||
[resources.apt]
|
||||
packages = "mariadb-server"
|
||||
packages_from_raw_bash = """
|
||||
[[ "$export" == "libreoffice" ]] && echo "unoconv libreoffice-writer"
|
||||
[[ "$export" == "abiword" ]] && echo "abiword"
|
||||
if [[ "$export" == "libreoffice" ]]
|
||||
then
|
||||
echo "unoconv libreoffice-writer"
|
||||
elif [[ "$export" == "abiword" ]]
|
||||
echo "abiword"
|
||||
fi
|
||||
"""
|
||||
|
||||
[resources.database]
|
||||
type = "mysql"
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue