chore: autoformatting abra.sh

This commit is contained in:
Philipp Rothmann 2023-05-08 11:43:45 +02:00 committed by Christian Galo
parent 8fdad4c913
commit bdcdbf5e41
1 changed files with 21 additions and 23 deletions

View File

@ -18,12 +18,10 @@ post_install_occ(){
install_apps() { install_apps() {
install_apps="$@" install_apps="$@"
if [ -z "$install_apps" ] if [ -z "$install_apps" ]; then
then
install_apps=$APPS install_apps=$APPS
fi fi
for app in $install_apps for app in $install_apps; do
do
run_occ "app:install $app" run_occ "app:install $app"
done done
} }