summaryrefslogtreecommitdiffstats
path: root/android/compile.sh
diff options
context:
space:
mode:
Diffstat (limited to 'android/compile.sh')
-rwxr-xr-xandroid/compile.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/android/compile.sh b/android/compile.sh
index 8be0e147c..72d5df181 100755
--- a/android/compile.sh
+++ b/android/compile.sh
@@ -64,8 +64,6 @@ case "$1" in
echo "Packing server.zip ..."
rm -rf Server
mkdir -p Server
- cd $BASEDIR/../Server
- zip -r $BASEDIR/Server/server.zip *
for arch in armeabi-v7a arm64-v8a x86 x86_64; do
echo "Doing ... $arch ..." && \
@@ -76,6 +74,10 @@ case "$1" in
zip $BASEDIR/Server/"$arch".zip Cuberite
done
+ echo "Packing server.zip ..."
+ cd $BUILDDIR/Server
+ zip -r $BASEDIR/Server/server.zip -@ -x Cuberite < Install/UnixExecutables.list
+
cd $BASEDIR/Server
for file in server.zip armeabi-v7a.zip arm64-v8a.zip x86.zip x86_64.zip; do
echo "Generating sha1 sum for ... $file ..." && \