From b019ac275c6e9d2632c741df51351c08ad64b140 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sat, 15 Mar 2025 13:01:44 +0000 Subject: [PATCH] macos: Renamed application from `azahar` to `Azahar` --- .ci/macos-universal.sh | 4 ++-- .ci/macos.sh | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.ci/macos-universal.sh b/.ci/macos-universal.sh index c87c1cc28..4ffde0794 100755 --- a/.ci/macos-universal.sh +++ b/.ci/macos-universal.sh @@ -11,7 +11,7 @@ BASE_ARTIFACT_ARCH="${BASE_ARTIFACT##*-}" mv $BASE_ARTIFACT $BUNDLE_DIR # Executable binary paths that need to be combined. -BIN_PATHS=(azahar-room azahar.app/Contents/MacOS/azahar) +BIN_PATHS=(azahar-room Azahar.app/Contents/MacOS/azahar) # Dylib paths that need to be combined. IFS=$'\n' @@ -37,7 +37,7 @@ for OTHER_ARTIFACT in "${ARTIFACTS_LIST[@]:1}"; do done # Re-sign executables and bundles after combining. -APP_PATHS=(azahar-room azahar.app) +APP_PATHS=(azahar-room Azahar.app) for APP_PATH in "${APP_PATHS[@]}"; do codesign --deep -fs - $BUNDLE_DIR/$APP_PATH done diff --git a/.ci/macos.sh b/.ci/macos.sh index c598fab85..37d28a5d3 100755 --- a/.ci/macos.sh +++ b/.ci/macos.sh @@ -10,6 +10,7 @@ cmake .. -GNinja \ -DUSE_DISCORD_PRESENCE=ON ninja ninja bundle +mv ./bundle/azahar.app ./bundle/Azahar.app # TODO: Can this be done in CMake? ccache -s -v