From 4fc5994d7ce459d37cf41054f0fd3e4ec89c17bb Mon Sep 17 00:00:00 2001 From: cattyhouse Date: Sat, 6 Jul 2019 03:35:25 +0800 Subject: [PATCH] Build: Fix macbuild.tool not removing files from previous archive (#7) --- macbuild.tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macbuild.tool b/macbuild.tool index 97f75c60..f09e049d 100755 --- a/macbuild.tool +++ b/macbuild.tool @@ -63,7 +63,7 @@ package() { cp -r "${selfdir}/UDK/OcSupportPkg/Utilities/Recovery" tmp/Utilities/ || exit 1 cp -r "${selfdir}/UDK/OcSupportPkg/Utilities/BootInstall" tmp/Utilities/ || exit 1 pushd tmp || exit 1 - zip -qry ../"OpenCore-v${ver}-${2}.zip" * || exit 1 + zip -qry -FS ../"OpenCore-v${ver}-${2}.zip" * || exit 1 popd || exit 1 rm -rf tmp || exit 1 popd || exit 1