feat(scripts): update script

This commit is contained in:
Matan Sarsha 2024-08-31 21:01:49 +03:00
parent 366e1a67a7
commit 65b8d102a7

View file

@ -77,17 +77,17 @@ function setup_services(){
}
function update_script() {
header_info
if [[ ! -d /opt/freegamesclaimer ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating $APP"
header_info
if [[ ! -d /opt/freegamesclaimer ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating $APP"
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "UPDATE \ Setup service" --radiolist --cancel-button Exit-Script "Spacebar = Select" 11 58 4 \
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "UPDATE \ Setup service" --radiolist --cancel-button Exit-Script "Spacebar = Select" 11 58 4 \
"1" "Update" ON \
"2" "Setup a service" OFF \
3>&1 1>&2 2>&3)
case $CHOICE in
"1")
case $CHOICE in
"1")
cd /opt/freegamesclaimer || exit
output=$(git pull)
git pull &>/dev/null
@ -101,14 +101,14 @@ case $CHOICE in
$STD npx playwright install firefox --with-deps
msg_ok "Updated $APP - If needed, run update again to setup the gaming services"
;;
"2")
"2")
setup_services
;;
*)
*)
echo "Unsupported item $CHOICE!" >&2
exit 1
;;
esac
esac
}
start