From 5fc48cfc8d49217499882cf54a36671036307ba6 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sat, 26 Apr 2025 22:26:28 +0100 Subject: [PATCH] ci: Remove libs directory for MacOS during `macos-universal.sh` so that it doesn't get distributed This directory isn't at all necessary, and just wastes space in the distributed archive --- .ci/macos-universal.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/macos-universal.sh b/.ci/macos-universal.sh index 15cb716e3..54541a1c5 100755 --- a/.ci/macos-universal.sh +++ b/.ci/macos-universal.sh @@ -36,6 +36,9 @@ for OTHER_ARTIFACT in "${ARTIFACTS_LIST[@]:1}"; do done done +# Remove leftover libs so that they aren't distributed +rm -rf "${BUNDLE_DIR}/libs" + # Re-sign executables and bundles after combining. APP_PATHS=(Azahar.app) for APP_PATH in "${APP_PATHS[@]}"; do