From eb30f49e52d569878552bf243915b7f7233e110c Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 21 Feb 2015 21:05:52 +1300 Subject: Update package script --- setup/package.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'setup') diff --git a/setup/package.sh b/setup/package.sh index e85cadfa6..5750eebd9 100755 --- a/setup/package.sh +++ b/setup/package.sh @@ -16,17 +16,25 @@ else fi # Check wrapper -if ls wrapper-delta-pack-*.tar.gz &> /dev/null; then +if ls wrapper-delta-pack-*.tar.gz 1> /dev/null 2>&1; then echo "Java wrapper package found" else echo "Put wrapper-delta-pack-*.tar.gz into this directory" exit 0 fi +# Check Windows x64 wrapper +if ls wrapper-windows-x86-64-*.zip 1> /dev/null 2>&1; then + echo "Java wrapper package found" +else + echo "Put wrapper-windows-x86-64-*.zip into this directory" + exit 0 +fi + # WINDOWS REQUIREMENTS # Check inno setup -if ls isetup-*.exe &> /dev/null; then +if ls isetup-*.exe 1> /dev/null 2>&1; then echo "Inno setup installer found" else echo "Put isetup-*.exe into this directory" -- cgit v1.2.3