Disable shell error about unbound variable during daily install

This commit is contained in:
Ky-Anh Huynh 2018-06-19 13:14:40 +07:00
parent 0129adb3c8
commit b3767e2bdc
No known key found for this signature in database
GPG key ID: B47786AF503CDEA5

View file

@ -584,6 +584,10 @@ if [ "$ITYPE" = "git" ]; then
# Disable shell warning about unbound variable during git install
STABLE_REV="latest"
elif [ "$ITYPE" = "daily" ]; then
# Disable shell error about unbound variable during daily install
STABLE_REV="latest"
# If doing stable install, check if version specified
elif [ "$ITYPE" = "stable" ]; then
if [ "$#" -eq 0 ];then