block if/fi correction

This commit is contained in:
ChuckPa 2023-03-29 04:18:06 -04:00
parent 6043ac44c6
commit 6aa4bac4c4
No known key found for this signature in database
GPG Key ID: 3CE28A0F6BC31B5B

View File

@ -1419,9 +1419,11 @@ do
Input="$1"
# If end of line then force exit
[ "$Input" = "" ] && Input="exit"
if [ "$Input" = "" ]; then
Input="exit"
Output "Unexpected EOF / End of command line options, Exiting"
fi
fi
# Watch for null command whether scripted or not.
if [ "$1" != "" ]; then