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="$@"
if [ -z "$install_apps" ]
then
if [ -z "$install_apps" ]; then
install_apps=$APPS
fi
for app in $install_apps
do
for app in $install_apps; do
run_occ "app:install $app"
done
}