1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 21:48:12 -05:00

update install script params

This commit is contained in:
Kyle Spearrin 2017-11-09 00:18:35 -05:00
parent 0383e66449
commit c9a2e67d09

View File

@ -2,19 +2,19 @@
set -e set -e
OUTPUT_DIR="../." OUTPUT_DIR="../."
if [ $# -eq 1 ] if [ $# -gt 0 ]
then then
OUTPUT_DIR=$1 OUTPUT_DIR=$1
fi fi
COREVERSION="latest" COREVERSION="latest"
if [ $# -gt 2 ] if [ $# -gt 1 ]
then then
COREVERSION=$2 COREVERSION=$2
fi fi
WEBVERSION="latest" WEBVERSION="latest"
if [ $# -gt 3 ] if [ $# -gt 2 ]
then then
WEBVERSION=$3 WEBVERSION=$3
fi fi