diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2019-04-28 20:38:12 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2019-04-28 20:38:12 -0700 |
commit | ea93bce8b7a59e09750065376e604f0c5348565f (patch) | |
tree | 6e0489c7272a1a2646d8746a80e71fb871b6c6e5 | |
parent | 9add9850381ca406074044746a20b3c1321a5d83 (diff) | |
download | trackermap-server-ea93bce8b7a59e09750065376e604f0c5348565f.tar.gz trackermap-server-ea93bce8b7a59e09750065376e604f0c5348565f.tar.bz2 trackermap-server-ea93bce8b7a59e09750065376e604f0c5348565f.zip |
Update packaging script
-rwxr-xr-x | setup/package.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setup/package.sh b/setup/package.sh index 80c7968b0..861b9a51d 100755 --- a/setup/package.sh +++ b/setup/package.sh @@ -60,7 +60,7 @@ check_requirement "Unzip" "which unzip" "Missing unzip binary" check_requirement "Ext JS" "ls $EXTJS_PATH" "ExtJS not found in $EXTJS_PATH (https://www.sencha.com/legal/GPL/)" check_requirement "Sencha Cmd" "which sencha" "Missing Sencha Cmd package (https://www.sencha.com/products/extjs/cmd-download/)" if [ $PLATFORM != "other" ]; then - check_requirement "Jlink" "which jlink" "Missing jlink binary (openjdk-10-jdk-headless)" + check_requirement "Jlink" "which jlink" "Missing jlink binary" fi if [ $PLATFORM = "all" -o $PLATFORM = "windows-64" ]; then check_requirement "Inno Extractor" "which innoextract" "Missing innoextract binary" @@ -72,10 +72,10 @@ if [ $PLATFORM = "all" -o $PLATFORM = "linux-64" -o $PLATFORM = "linux-arm" ]; t check_requirement "Makeself" "which makeself" "Missing makeself binary" fi if [ $PLATFORM = "all" -o $PLATFORM = "linux-64" ]; then - check_requirement "Linux 64 Java" "ls jdk-*-linux-x64.zip" "Missing Linux 64 Java (https://github.com/ojdkbuild/contrib_jdk10u-ci/releases)" + check_requirement "Linux 64 Java" "ls jdk-*-linux-x64.zip" "Missing Linux 64 Java (https://github.com/ojdkbuild/contrib_jdk11u-ci/releases)" fi if [ $PLATFORM = "all" -o $PLATFORM = "linux-arm" ]; then - check_requirement "Linux ARM Java" "ls jdk-*-linux-armhf.zip" "Missing Linux ARM Java (https://github.com/ojdkbuild/contrib_jdk10u-aarch32-ci/releases)" + check_requirement "Linux ARM Java" "ls jdk-*-linux-armhf.zip" "Missing Linux ARM Java (https://github.com/ojdkbuild/contrib_jdk11u-aarch32-ci/releases)" fi if [ $PREREQ = false ]; then info "Missing build requirements, aborting..." |