Revert "cmake: Align Product Name and Bundle Name on macOS"

This reverts commit 9f66c23825.

This commit caused a crash in CEF on startup for many users. Let's just
revert it asap for now and worry about the minor problem it was solving
another time.
This commit is contained in:
gxalpha
2023-12-10 13:47:52 +01:00
committed by Patrick Heyer
parent 263e027938
commit baa3243412
2 changed files with 3 additions and 6 deletions

View File

@@ -179,14 +179,12 @@ build() {
if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]] {
run_xcodebuild ${archive_args}
run_xcodebuild ${export_args}
mv "OBS Studio.app" OBS.app
} else {
run_xcodebuild ${build_args}
rm -rf OBS.app
mkdir OBS.app
ditto "UI/${config}/OBS Studio.app" OBS.app
ditto UI/${config}/OBS.app OBS.app
}
popd
;;