From 6def3ff052ca0eefca721c6549d65c38b41b3ddc Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Mon, 4 Feb 2019 23:07:07 -0600 Subject: [PATCH] Update nodemgmt-scripts.sh --- nodemgmt-scripts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index 2493477c..7e0c9050 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -97,7 +97,7 @@ LISTCERTS(){ if [ "${#SUBJECTNAMES[*]}" -gt 1 ]; then anid=1 for ALTNAME in "${SUBJECTNAMES[@]}"; do - if [ "${ALTNAME}" != "${SUBJECT}"]; then + if [ "${ALTNAME}" != "${SUBJECT}" ]; then if [ "${anid}" = 1 ]; then alttitle='Alternate Subject(s):'; else alttitle=' '; fi echo -e "${alttitle} ${idsCL[LightCyan]}${ALTNAME}${idsCL[Default]}" anid=`expr $anid + 1`