diff options
-rwxr-xr-x | replicant_gta04_install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/replicant_gta04_install.sh b/replicant_gta04_install.sh index 09ac0ca..8bd0ae3 100755 --- a/replicant_gta04_install.sh +++ b/replicant_gta04_install.sh @@ -143,7 +143,7 @@ drive_select_confirm() { done echo "" - echo -n "Are you sure? " + echo -n "Are you sure? [Y/N] " read confirm if [ "$confirm" = "y" ] || [ "$confirm" = "Y" ] @@ -186,7 +186,7 @@ drive_empty() { drive_rescue() { if [ -f ".drive_start_backup" ] then - echo -n "Something went wrong, do you want to restore drive start backup? " + echo -n "Something went wrong, do you want to restore drive start backup? [Y/N] " if [ "$confirm" = "y" ] || [ "$confirm" = "Y" ] then dd if=".drive_start_backup" of="$DRIVE" bs=1024 count=1024 |