From be13f167bdb1b2f941737b0d7a64b8278578cfe0 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 23 Jun 2018 17:39:58 -0600 Subject: [PATCH] fix unbound var --- usr/share/install_helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/share/install_helper.sh b/usr/share/install_helper.sh index 7367d29..4110c64 100644 --- a/usr/share/install_helper.sh +++ b/usr/share/install_helper.sh @@ -79,8 +79,8 @@ echo "" my_tmp="$(mktemp -d)" #TELEBIT_TMP="$my_tmp/telebit" -TELEBIT_REAL_PATH=$TELEBIT_PATH -TELEBIT_TMP=$TELEBIT_PATH +TELEBIT_REAL_PATH=${TELEBIT_PATH:-} +TELEBIT_TMP=${TELEBIT_PATH:-} if [ -z "${TELEBIT_PATH:-}" ]; then echo 'TELEBIT_PATH="'${TELEBIT_PATH:-}'"' TELEBIT_PATH=/opt/$my_app