From c9875f4b74f736c3c781dde4cce8c172ca87bd0a Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Fri, 23 Jun 2023 23:01:58 -0500 Subject: [PATCH] Update nodemgmt-scripts.sh --- nodemgmt-scripts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index 04e6ed5d..24e94a7b 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -1307,8 +1307,8 @@ GUI(){ echo -en "${idsCL[LightCyan]}View the (L)ive log, or the (P)revious run log instead? ${idsCL[Default]}" read -n1 choice case $choice in - [Ll]) watch -n1 ${FOLDER}/status-check.running;; - [Pp]) echo; cat ${FOLDER}/status-check.running;; + [Ll]) watch -n1 cat ${FOLDER}/status-check.running;; + [Pp]) echo; cat ${FOLDER}/status-check.lastrun;; esac echo fi;;