diff --git a/scripts/apache-maven-3.9.6-bin.tar.gz b/scripts/apache-maven-3.9.6-bin.tar.gz new file mode 100644 index 0000000..5f95759 Binary files /dev/null and b/scripts/apache-maven-3.9.6-bin.tar.gz differ diff --git a/scripts/install.sh b/scripts/install.sh index 4503fcd..759d30a 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -20,8 +20,17 @@ echo "" echo " See https://docs.ozone-his.com/ for how to set it up for production." echo "" -# Default to current code version -ozoneVersion=${1:-1.0.0-SNAPSHOT} + +ozoneVersion=$1 +if [ ! "$1" ] +then + echo "$ERROR Please provide the Ozone version number as parameter to this script." + echo "Eg:" + echo " './install.sh 1.0.0-alpha.9'" + echo "" + echo "Aborting..." + exit 1 +fi echo "$INFO Ozone version: $ozoneVersion"