Skip to content

Commit

Permalink
Pushing finely aged vintage changes
Browse files Browse the repository at this point in the history
  • Loading branch information
blegas78 committed Nov 14, 2023
1 parent 8f5e1a6 commit 931f22f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apps/libpanda-app-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ do_descriptions () {

do_start_app () {
if [ "${CURRENT_APP}" != "None" ]; then
$APP_DIR/$CURRENT_APP/start.sh
bash $APP_DIR/$CURRENT_APP/start.sh
fi
}

do_stop_app () {
if [ "${CURRENT_APP}" != "None" ]; then
$APP_DIR/$CURRENT_APP/stop.sh
bash $APP_DIR/$CURRENT_APP/stop.sh
fi
}

Expand Down Expand Up @@ -380,8 +380,8 @@ do_app_uninstall () {
return 0
fi

$APP_DIR/$APP_TO_REMOVE/stop.sh
$APP_DIR/$APP_TO_REMOVE/uninstall.sh
bash $APP_DIR/$APP_TO_REMOVE/stop.sh
bash $APP_DIR/$APP_TO_REMOVE/uninstall.sh
# echo "None" > $CURRENT_APP_FILE
yq -i '.current = "None"' $APP_MANIFEST
}
Expand Down Expand Up @@ -503,7 +503,7 @@ do_app_install () {

done

$APP_DIR/$APP_TO_INSTALL/install.sh
bash $APP_DIR/$APP_TO_INSTALL/install.sh
# echo "$APP_TO_INSTALL" > $CURRENT_APP_FILE
yq -i '.current = "'"$APP_TO_INSTALL"'"' $APP_MANIFEST
}
Expand Down

0 comments on commit 931f22f

Please sign in to comment.