1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00

Fix unbound variable

This commit is contained in:
downtownallday 2020-08-28 18:14:14 -04:00
parent f49590d52a
commit da7468a6b3

View File

@ -99,7 +99,7 @@ hide_output add-apt-repository -y ppa:certbot/certbot
# of things from Ubuntu, as well as the directory of packages provide by the # of things from Ubuntu, as well as the directory of packages provide by the
# PPAs so we can install those packages later. # PPAs so we can install those packages later.
if [ "$SKIP_SYSTEM_UPDATE" != "1" ]; then if [ "${SKIP_SYSTEM_UPDATE:-0}" != "1" ]; then
echo Updating system packages... echo Updating system packages...
hide_output apt-get update hide_output apt-get update
apt_get_quiet upgrade apt_get_quiet upgrade