From b90623f0058d37023a803a3898084b311819f585 Mon Sep 17 00:00:00 2001 From: Christian Date: Sat, 22 Jun 2019 23:58:21 +0200 Subject: [PATCH] fix(install): check if gslt token empty instead of existing (#2408) Co-authored-by: Christian Birk --- lgsm/functions/command_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index c1192a60a..20f0d3445 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -32,7 +32,7 @@ else # Configuration. install_config.sh - if [ -v "${gslt}" ]; then + if [ -z "${gslt}" ]; then install_gslt.sh elif [ "${shortname}" == "dst" ]; then install_dst_token.sh