re-arrange

This commit is contained in:
Heavybullets8 2022-07-26 13:10:09 -06:00
parent e4e3cf3bd7
commit 7a4622b3e3
2 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ menu(){
6) 6)
deleteBackup="true" deleteBackup="true"
;; ;;
9) 7)
echo "" echo ""
echo "1 Update Apps Excluding likely breaking major changes" echo "1 Update Apps Excluding likely breaking major changes"
echo "2 Update Apps Including likely breaking major changes" echo "2 Update Apps Including likely breaking major changes"

View File

@ -1,9 +1,5 @@
#!/bin/bash #!/bin/bash
#If no argument is passed, kill the script.
[[ -z "$*" || "-" == "$*" || "--" == "$*" ]] && menu
# shellcheck source=functions/backup.sh # shellcheck source=functions/backup.sh
source functions/backup.sh source functions/backup.sh
# shellcheck source=functions/dns.sh # shellcheck source=functions/dns.sh
@ -20,6 +16,10 @@ source functions/self_update.sh
source functions/update_apps.sh source functions/update_apps.sh
#If no argument is passed, kill the script.
[[ -z "$*" || "-" == "$*" || "--" == "$*" ]] && menu
# Parse script options # Parse script options
while getopts ":sirb:t:uUpSRv-:" opt while getopts ":sirb:t:uUpSRv-:" opt
do do