From e54c1269ac135fe425e33d4e44e6d817a86fced3 Mon Sep 17 00:00:00 2001 From: tomit4 Date: Thu, 9 Jun 2022 15:23:46 -0700 Subject: [PATCH] updated scripts/bgit --- scripts/bgit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bgit b/scripts/bgit index b85f4ed2..8fbfe882 100755 --- a/scripts/bgit +++ b/scripts/bgit @@ -63,7 +63,7 @@ fi while [ true ] do # Prompts user if they'd like to commit the changes - read -r -p "${txtwhite}commit changes?(y/n): ${txtyellow}" change + read -e -r -p "${txtwhite}commit changes?(y/n): ${txtyellow}" change # If the user chooses to commit the changes... if [[ $change == "y" || $change == "yes" ]] ; then @@ -71,7 +71,7 @@ do while [ true ] do # Prompts the user to input their commit message - read -r -p "${txtwhite}commit message: ${txtyellow}" message + read -e -r -p "${txtwhite}commit message: ${txtyellow}" message cmessage=("$message") # if the user inputted a commit message... if [ -n "$message" ] ; then