mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
install: Include no-dist-upgrade in args list.
This was missed out in 2e51ac8c49
This commit is contained in:
@@ -12,6 +12,7 @@ Other options:
|
|||||||
--self-signed-cert
|
--self-signed-cert
|
||||||
--no-init-db
|
--no-init-db
|
||||||
--cacert
|
--cacert
|
||||||
|
--no-dist-upgrade
|
||||||
|
|
||||||
The --hostname and --email options are required,
|
The --hostname and --email options are required,
|
||||||
unless --no-init-db is set and --certbot is not.
|
unless --no-init-db is set and --certbot is not.
|
||||||
@@ -21,7 +22,7 @@ EOF
|
|||||||
|
|
||||||
# Shell option parsing. Over time, we'll want to move some of the
|
# Shell option parsing. Over time, we'll want to move some of the
|
||||||
# environment variables below into this self-documenting system.
|
# environment variables below into this self-documenting system.
|
||||||
args="$(getopt -o '' --long help,no-init-db,self-signed-cert,certbot,hostname:,email:,cacert: -n "$0" -- "$@")"
|
args="$(getopt -o '' --long help,no-init-db,no-dist-upgrade,self-signed-cert,certbot,hostname:,email:,cacert: -n "$0" -- "$@")"
|
||||||
eval "set -- $args"
|
eval "set -- $args"
|
||||||
while true; do
|
while true; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
|||||||
Reference in New Issue
Block a user