summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2020-09-19 21:51:22 +0200
committer Eric Hameleers <alien@slackware.com>2020-09-19 21:51:22 +0200
commitbe321251b722b5ae7eef1945b17e214533c9c893 (patch)
treed313aeecfcc8d071db4a39cac924668cb5f21229
parente3939e70ef3d5fffc5204ae15a68c23e5f9a275d (diff)
downloadliveslak-be321251b722b5ae7eef1945b17e214533c9c893.tar.gz
liveslak-be321251b722b5ae7eef1945b17e214533c9c893.tar.xz
Fix a string check
-rwxr-xr-xmake_slackware_live.sh4
1 files 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