From d377834f8e3cc855dff9b7a0f22bf20198ae0875 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 21 Dec 2021 21:21:57 -0300 Subject: [PATCH] Add cancel button handling --- scripts/bootstrap.sh | 2 +- scripts/linkFiles.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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