From 678577d1555415bc64562f0b5c84d1be781caf55 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Tue, 7 Mar 2023 12:24:59 -0500 Subject: [PATCH] Reword some CLI argument output. --- retrodeck.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/retrodeck.sh b/retrodeck.sh index ba5e820f..864116f0 100644 --- a/retrodeck.sh +++ b/retrodeck.sh @@ -93,7 +93,7 @@ https://retrodeck.net read -p "Press 'y' to continue, 'n' to stop: " response if [[ $response == [yY] ]]; then rm -f "$lockfile" - read -p "The process has been completed, press any key to start RetroDECK." + read -p "The process has been completed, press any key to start the initial RetroDECK setup process." shift # Continue launch after previous command is finished else read -p "The process has been cancelled, press any key to exit." @@ -105,6 +105,7 @@ https://retrodeck.net exit 1 ;; *) + echo "Please specify a valid option. Use -h for more information." ;; esac done