Merge pull request #1246 from icyfork/ubuntu_daily_set_stable_rev

Disable shell error about unbound variable during daily install
This commit is contained in:
Nicole Thomas 2018-06-19 09:57:34 -04:00 committed by GitHub
commit 819ce0ff53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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