diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2022-08-09 17:16:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 17:16:11 -0700 |
commit | 4f60122750cc61b5f2112a285036a98957b8273b (patch) | |
tree | 0398ac4109c7cf8dacc357568681ffa5c8bb5f18 /setup | |
parent | d5bb27d42a6d1e5c9fc9e6fe1c777383050c5e28 (diff) | |
download | trackermap-server-4f60122750cc61b5f2112a285036a98957b8273b.tar.gz trackermap-server-4f60122750cc61b5f2112a285036a98957b8273b.tar.bz2 trackermap-server-4f60122750cc61b5f2112a285036a98957b8273b.zip |
Fix linux package name
Diffstat (limited to 'setup')
-rwxr-xr-x | setup/package.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/setup/package.sh b/setup/package.sh index 3cfe88a52..71b86014f 100755 --- a/setup/package.sh +++ b/setup/package.sh @@ -61,14 +61,14 @@ fi if [ $PLATFORM = "all" -o $PLATFORM = "windows-64" ]; then check_requirement "Inno Extractor" "which innoextract" "Missing innoextract binary" check_requirement "Inno Setup" "ls i*setup-*.exe" "Missing Inno Setup (http://www.jrsoftware.org/isdl.php)" - check_requirement "Windows 64 Java" "ls OpenJDK*x64_windows*.zip" "Missing Windows 64 JDK (https://adoptium.net/)" + check_requirement "Windows 64 Java" "ls OpenJDK*64_windows*.zip" "Missing Windows 64 JDK (https://adoptium.net/)" check_requirement "Wine" "which wine" "Missing wine binary" fi if [ $PLATFORM = "all" -o $PLATFORM = "linux-64" -o $PLATFORM = "linux-arm" ]; then check_requirement "Makeself" "which makeself" "Missing makeself binary" fi if [ $PLATFORM = "all" -o $PLATFORM = "linux-64" ]; then - check_requirement "Linux 64 Java" "ls OpenJDK*x64_linux*.tar.gz" "Missing Linux 64 JDK (https://adoptium.net/)" + check_requirement "Linux 64 Java" "ls OpenJDK*64_linux*.tar.gz" "Missing Linux 64 JDK (https://adoptium.net/)" fi if [ $PLATFORM = "all" -o $PLATFORM = "linux-arm" ]; then check_requirement "Linux ARM Java" "ls OpenJDK*arm_linux*.tar.gz" "Missing Linux ARM JDK (https://adoptium.net/)" @@ -119,7 +119,7 @@ package_other () { package_windows () { info "Building Windows 64 installer" - unzip -q OpenJDK*x64_windows*.zip + unzip -q OpenJDK*64_windows*.zip jlink --module-path jdk-*/jmods --add-modules java.se,jdk.charsets,jdk.crypto.ec --output out/jre rm -rf jdk-* wine app/ISCC.exe traccar.iss >/dev/null @@ -148,7 +148,7 @@ package_linux () { package_linux_64 () { info "Building Linux 64 installer" - package_linux x64 + package_linux 64 ok "Created Linux 64 installer" } |