From 5e1958b572913eb7e4169eb0abe9dbbd000f9d48 Mon Sep 17 00:00:00 2001 From: bryan Date: Thu, 13 Jan 2022 11:36:43 -0500 Subject: [PATCH] Formatting --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index 8f2d162..aca2464 100755 --- a/installJRMC +++ b/installJRMC @@ -107,7 +107,7 @@ debug() { (( DEBUG )) && [[ $# -gt 0 ]] && echo "Debug: $*"; } err() { echo "Error: $*" >&2; } askOk() { declare response - read -r -p "$* [y/N]" response + read -r -p "$* [y/N]: " response [[ "${response,,}" =~ ^(yes|y)$ ]] return $? }