From d2fbd62b63c5dba5aec7e5be7f70ea72ccf251fb Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 13 Jun 2019 14:04:25 -0700 Subject: [PATCH] install: Fix argument parsing for no-overwrite-settings option. This had the same bug as our other recent change to the install script. --- scripts/lib/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/install b/scripts/lib/install index 0e51333eee..5822f2940e 100755 --- a/scripts/lib/install +++ b/scripts/lib/install @@ -22,7 +22,7 @@ EOF # Shell option parsing. Over time, we'll want to move some of the # environment variables below into this self-documenting system. -args="$(getopt -o '' --long help,no-init-db,no-dist-upgrade,self-signed-cert,certbot,hostname:,email:,cacert: -n "$0" -- "$@")" +args="$(getopt -o '' --long help,no-init-db,no-dist-upgrade,no-overwrite-settings,self-signed-cert,certbot,hostname:,email:,cacert: -n "$0" -- "$@")" eval "set -- $args" while true; do case "$1" in