Skip to content

Commit

Permalink
update install script params
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Nov 9, 2017
1 parent 0383e66 commit c9a2e67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c9a2e67

Please sign in to comment.