Update alpine-docker.sh

indentation
pull/1220/head
tteckster 2 years ago committed by GitHub
parent e70da12429
commit b078ad6d3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      ct/alpine-docker.sh

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

Loading…
Cancel
Save