mirror of
https://github.com/godotengine/godot-build-scripts.git
synced 2025-12-31 05:48:35 +03:00
macOS: Disable LDID fake signing for arm64
It doesn't work and makes it impossible to sign binaries properly without using --force.
This commit is contained in:
2
build.sh
2
build.sh
@@ -146,7 +146,7 @@ if [ "${skip_git_checkout}" == 0 ]; then
|
||||
# Validate version
|
||||
correct_version=$(python3 << EOF
|
||||
import version;
|
||||
if hasattr(version, "patch"):
|
||||
if hasattr(version, "patch") and version.patch != 0:
|
||||
git_version = f"{version.major}.{version.minor}.{version.patch}-{version.status}"
|
||||
else:
|
||||
git_version = f"{version.major}.{version.minor}-{version.status}"
|
||||
|
||||
Reference in New Issue
Block a user