diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index e4ca251..1db7636 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -99,7 +99,7 @@ jobs: xcodebuild clean build \ -scheme MacMonitor \ -configuration Release \ - -destination 'generic/platform=macOS,arch=x86_64' \ + -destination 'platform=macOS,arch=x86_64' \ -derivedDataPath "$PWD/DerivedData" \ CODE_SIGNING_ALLOWED=NO diff --git a/AGENTS.md b/AGENTS.md index 2a69e9e..1a2dce6 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -132,7 +132,7 @@ Before opening any Pull Request, ensure that the project compiles cleanly for In ```bash xcodebuild build test \ -scheme MacMonitor \ - -destination 'generic/platform=macOS,arch=x86_64' \ + -destination 'platform=macOS,arch=x86_64' \ CODE_SIGNING_ALLOWED=NO ``` diff --git a/README.md b/README.md index f7203e2..bd6f674 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ git checkout develop # Build Release binary for Intel x86_64 xcodebuild build \ -scheme MacMonitor \ - -destination 'generic/platform=macOS,arch=x86_64' \ + -destination 'platform=macOS,arch=x86_64' \ -configuration Release \ CODE_SIGNING_ALLOWED=NO ```