From 7a4e27e5f054f418f4aa08c6c0c3c22c50bf0c97 Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Tue, 19 Dec 2023 16:38:02 +0100 Subject: [MacOS] Use framekwork to package GDExtension This allows it to be code-signed as a bundle so gatekeeper won't complain when loaded by the editor. --- misc/scripts/package_release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc/scripts') diff --git a/misc/scripts/package_release.sh b/misc/scripts/package_release.sh index 3ca5a2b..c3cf553 100755 --- a/misc/scripts/package_release.sh +++ b/misc/scripts/package_release.sh @@ -16,7 +16,7 @@ DESTDIR="${DESTINATION}/${VERSION}/${TYPE}" mkdir -p ${DESTDIR}/lib -find "${ARTIFACTS}" -wholename "*/${VERSION}/${TYPE}/lib/*" | xargs cp -t "${DESTDIR}/lib/" +find "${ARTIFACTS}" -maxdepth 5 -wholename "*/${VERSION}/${TYPE}/lib/*" | xargs cp -r -t "${DESTDIR}/lib/" find "${ARTIFACTS}" -wholename "*/LICENSE*" | xargs cp -t "${DESTDIR}/" if [ $VERSION = "gdnative" ]; then -- cgit v1.2.3