diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-04-17 15:31:38 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-04-17 15:31:38 +1200 |
commit | 53183f4299b523df929d3b38fa358df6c78b4c2e (patch) | |
tree | b0a5e5d5e769b63efc9fa98cc548d77d2b6420b3 | |
parent | 3edc573b3cc06ed33598ce2dd97acbc9055c917c (diff) | |
download | traccar-server-53183f4299b523df929d3b38fa358df6c78b4c2e.tar.gz traccar-server-53183f4299b523df929d3b38fa358df6c78b4c2e.tar.bz2 traccar-server-53183f4299b523df929d3b38fa358df6c78b4c2e.zip |
Update setup packaging scripts
-rwxr-xr-x | setup/package.sh | 6 | ||||
-rwxr-xr-x | tools/minify.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/setup/package.sh b/setup/package.sh index fa5fbd277..0fe0fd5a9 100755 --- a/setup/package.sh +++ b/setup/package.sh @@ -22,10 +22,10 @@ check_requirement () { fi } -check_requirement "ls ../../ext-*" "Missing ../../ext-X.X.X (https://www.sencha.com/legal/GPL/)" +check_requirement "ls ../../ext-6.0.1" "Missing ../../ext-6.0.1 (https://www.sencha.com/legal/GPL/)" check_requirement "ls wrapper-delta-pack-*.tar.gz" "Missing wrapper-delta-pack-*.tar.gz (http://wrapper.tanukisoftware.com/doc/english/download.jsp)" check_requirement "ls wrapper-windows-x86-64-*.zip" "Missing wrapper-windows-x86-64-*.zip (http://www.krenger.ch/blog/tag/java-service-wrapper/)" -check_requirement "ls isetup-*.exe" "Missing isetup-*.exe (http://www.jrsoftware.org/isdl.php)" +check_requirement "ls innosetup-*.exe" "Missing isetup-*.exe (http://www.jrsoftware.org/isdl.php)" check_requirement "which sencha" "Missing sencha cmd package (https://www.sencha.com/products/extjs/cmd-download/)" check_requirement "which wine" "Missing wine package" check_requirement "which innoextract" "Missing innoextract package" @@ -38,7 +38,7 @@ prepare () { ../tools/minify.sh - innoextract isetup-*.exe + innoextract innosetup-*.exe echo "If you got any errors here try isetup version 5.5.5 (or check what versions are supported by 'innoextract -v')" } diff --git a/tools/minify.sh b/tools/minify.sh index 4d402d50e..4a5c47f9d 100755 --- a/tools/minify.sh +++ b/tools/minify.sh @@ -2,7 +2,7 @@ cd $(dirname $0)/../web -SDK="../../ext-6.0.0" +SDK="../../ext-6.0.1" sencha compile --classpath=app.js,app,$SDK/packages/core/src,$SDK/packages/core/overrides,$SDK/classic/classic/src,$SDK/classic/classic/overrides \ exclude -all \ |