From be321251b722b5ae7eef1945b17e214533c9c893 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Sat, 19 Sep 2020 21:51:22 +0200 Subject: Fix a string check --- make_slackware_live.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make_slackware_live.sh b/make_slackware_live.sh index dd84bc5..3670a75 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1478,9 +1478,9 @@ then fi # Determine the full name of the live account in the image: -if [ -z ${LIVEUIDFN} ]; then +if [ -z "${LIVEUIDFN}" ]; then eval LIVEUIDFN=\$LIVEUIDFN_${LIVEDE} - if [ -z ${LIVEUIDFN} ]; then + if [ -z "${LIVEUIDFN}" ]; then LIVEUIDFN="${DISTRO^} Live User" fi fi -- cgit v1.2.3