diff --git a/manifest.toml b/manifest.toml index fd87622..dda0122 100644 --- a/manifest.toml +++ b/manifest.toml @@ -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" - \ No newline at end of file +