Update alpine-docker.sh

indent update
This commit is contained in:
tteckster 2023-03-23 10:35:48 -04:00 committed by GitHub
parent ac82a25d4c
commit bb30640180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 18 deletions

View File

@ -52,24 +52,24 @@ function default_settings() {
} }
function update_script() { function update_script() {
while true; do while true; do
CHOICE=$( CHOICE=$(
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \ whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \
"1" "Check for Docker Updates" 3>&2 2>&1 1>&3 "1" "Check for Docker Updates" 3>&2 2>&1 1>&3
) )
exit_status=$? exit_status=$?
if [ $exit_status == 1 ]; then if [ $exit_status == 1 ]; then
clear clear
exit-script exit-script
fi fi
header_info header_info
case $CHOICE in case $CHOICE in
1) 1)
apk update && apk upgrade apk update && apk upgrade
exit exit
;; ;;
esac esac
done done
} }
start start