We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ba0ec7 commit 58195edCopy full SHA for 58195ed
build.sh
@@ -9,7 +9,7 @@ if [ -z "$PLATFORM" ]; then
9
[ "$OSTYPE" == "linux-gnu" ] || [ "$OSTYPE" == "linux" ] && PLATFORM="linux"
10
fi
11
12
-export vc_ver=10
+export vc_ver=latest
13
14
# Build <platform> <type>
15
function Build()
build/package.sh
@@ -1,5 +1,10 @@
1
#!/bin/bash
2
3
+if [ ! -d "binaries" ]; then
4
+ echo "Please start \"buildall.sh\" before packaging."
5
+ exit 1
6
+fi
7
+
8
# Extract version from zlib.h using grep and bash regexp
ver=`grep ../zlib/zlib.h -e "#define ZLIB_VERSION"`
[[ "$ver" =~ "\"(.*)\"" ]] && version=${BASH_REMATCH[1]}
@@ -43,3 +48,5 @@ Konstantin Nosov
43
48
https://github.com/gildor2/fast_zlib
44
49
http://www.gildor.org
45
50
EOF
51
52
+echo "Now \"tmp\" directory contains data for zipping."
0 commit comments