From fa93c02e455c1410c3afb2c7fbd0d2c0e1c0afec Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 27 Sep 2023 21:45:44 +1000 Subject: [PATCH] CI: Make Mac Updater a universal binary too --- scripts/make-universal-macos-binary.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/make-universal-macos-binary.sh b/scripts/make-universal-macos-binary.sh index 372497a6a..58d11588a 100755 --- a/scripts/make-universal-macos-binary.sh +++ b/scripts/make-universal-macos-binary.sh @@ -31,7 +31,9 @@ cd .. echo "Combine binary..." unset MACOSX_DEPLOYMENT_TARGET BINPATH=bin/DuckStation.app/Contents/MacOS/DuckStation +UPDATERPATH=bin/DuckStation.app/Contents/Resources/Updater.app/Contents/MacOS/Updater lipo -create "build-x64/$BINPATH" "build-arm64/$BINPATH" -o "build-x64/$BINPATH" +lipo -create "build-x64/$UPDATERPATH" "build-arm64/$UPDATERPATH" -o "build-x64/$UPDATERPATH" # For some reason, the svg image format plugin doesn't get included in combined builds... if [ -f $HOME/deps/plugins/imageformats/libqsvg.dylib ]; then