From 3043e80440e63710899e18cacfeb31d557efb409 Mon Sep 17 00:00:00 2001 From: dreamer Date: Tue, 28 Oct 2025 12:52:40 +0100 Subject: [PATCH] use correct package --- utils/package-osx-bundles.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/package-osx-bundles.sh b/utils/package-osx-bundles.sh index 16400cd6..be687f80 100755 --- a/utils/package-osx-bundles.sh +++ b/utils/package-osx-bundles.sh @@ -159,11 +159,11 @@ productbuild \ ${MACOS_PKG_SNAME}-macOS.pkg if [ -n "${MACOS_NOTARIZATION_USER}" ] && [ -n "${MACOS_NOTARIZATION_PASS}" ] && [ -n "${MACOS_NOTARIZATION_TEAM}" ]; then - xcrun notarytool submit ${MACOS_PKG_NAME}-macOS.pkg \ + xcrun notarytool submit ${MACOS_PKG_SNAME}-macOS.pkg \ --apple-id ${MACOS_NOTARIZATION_USER} \ --password ${MACOS_NOTARIZATION_PASS} \ --team-id ${MACOS_NOTARIZATION_TEAM} \ --wait - xcrun stapler staple ${MACOS_PKG_NAME}-macOS.pkg + xcrun stapler staple ${MACOS_PKG_SNAME}-macOS.pkg fi