From a426779dffc0dbcd74a57302a4f32af186512262 Mon Sep 17 00:00:00 2001 From: Michael Stanclift Date: Thu, 21 May 2020 20:52:39 -0500 Subject: [PATCH] Yes no --- gravity-sync.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gravity-sync.sh b/gravity-sync.sh index 8a860b1..41cd937 100755 --- a/gravity-sync.sh +++ b/gravity-sync.sh @@ -143,12 +143,12 @@ case $# in echo -e "${GREEN}Success:${NC} Update Requested" # echo -e "${YELLOW}UPDATING REQUIRES ORIGINAL INSTALL VIA GIT${NC}" echo -e "Are you sure you want to update?" - select yn in "Update" "Cancel"; do + select yn in "Yes" "No"; do case $yn in - Update ) + Yes ) git pull break;; - Cancel ) + No ) echo "No changes have been made to the system" exit;; esac