diff options
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 |
commit | be321251b722b5ae7eef1945b17e214533c9c893 (patch) | |
tree | d313aeecfcc8d071db4a39cac924668cb5f21229 | |
parent | e3939e70ef3d5fffc5204ae15a68c23e5f9a275d (diff) | |
download | liveslak-be321251b722b5ae7eef1945b17e214533c9c893.tar.gz liveslak-be321251b722b5ae7eef1945b17e214533c9c893.tar.xz |
Fix a string check
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 4 |
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 |