diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 6513802..4734a52 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -24,7 +24,7 @@ startRice() { ./scripts/linkFiles.sh - # clear + clear } startRice \ No newline at end of file diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index e6b447d..3789b27 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -15,6 +15,9 @@ linkFile() { ln -s "$1" "$2" else selectedOption=$(dialog --menu "File already exists: $(basename "$1"), what would you like to do?" 10 60 0 1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all" 3>&1 1>&2 2>&3 3>&1) + if [ "$selectedOption" = "" ]; then + exit 0 + fi if [ $selectedOption -eq 1 ]; then return