1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -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
OUTPUT_DIR="../."
if [ $# -eq 1 ]
if [ $# -gt 0 ]
then
OUTPUT_DIR=$1
fi
COREVERSION="latest"
if [ $# -gt 2 ]
if [ $# -gt 1 ]
then
COREVERSION=$2
fi
WEBVERSION="latest"
if [ $# -gt 3 ]
if [ $# -gt 2 ]
then
WEBVERSION=$3
fi