From 326ebb7607ed13455ab3bf8ac3b02fbc3098d4dc Mon Sep 17 00:00:00 2001 From: Sergii Pylypenko Date: Wed, 19 May 2021 23:39:43 +0300 Subject: [PATCH] SDL: do not include empty directory entries when adding custom binaries --- copyAssets.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/copyAssets.sh b/copyAssets.sh index 25e9247bc..3159cae7b 100755 --- a/copyAssets.sh +++ b/copyAssets.sh @@ -17,11 +17,11 @@ if [ "$1" = "pack-binaries-bundle" ]; then rm -rf base mkdir -p base mv lib base/ - zip -r "$APK" base || exit 1 + zip -r -D "$APK" base || exit 1 mv base/lib ./ rm -rf base else - zip -r "$APK" lib || exit 1 + zip -r -D "$APK" lib || exit 1 fi cd ../../../../ exit 0