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:
parent
0383e66449
commit
c9a2e67d09
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user