diff options
Diffstat (limited to 'deployment/zip/installer/install.sh')
-rw-r--r-- | deployment/zip/installer/install.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/deployment/zip/installer/install.sh b/deployment/zip/installer/install.sh index 57f0edc6..d167a1a5 100644 --- a/deployment/zip/installer/install.sh +++ b/deployment/zip/installer/install.sh @@ -33,7 +33,15 @@ mkdir -p $CLI_INSTALL_DIR cd $CLI_INSTALL_DIR #Download and unzip CLI -apt-get install -y wget unzip openjdk-8-jre +apt-get install -y wget unzip + +#check for java +java -version +if [ $? == 127 ] +then + apt-get install -y openjdk-8-jre +fi + wget -O $CLI_ZIP $CLI_LATEST_BINARY unzip $CLI_ZIP |