diff options
| -rw-r--r-- | justfile | 4 | ||||
| -rw-r--r-- | project.yml | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -38,8 +38,8 @@ install derived_data=derived_data location=location: generate: command -v xcodegen >/dev/null 2>&1 \ - && xcodegen generate \ - || mint run xcodegen@synced_folder generate + && DEVELOPMENT_TEAM='{{development_team}}' xcodegen generate \ + || DEVELOPMENT_TEAM='{{development_team}}' mint run xcodegen@synced_folder generate install_ios derived_data=derived_data configuration="Release": xcrun devicectl device install app --device {{device_identifier}} {{derived_data}}/{{target}}-*/Build/Products/{{configuration}}-iphoneos/{{target}}.app diff --git a/project.yml b/project.yml index 1814edc..f71376c 100644 --- a/project.yml +++ b/project.yml @@ -51,6 +51,7 @@ targets: CODE_SIGN_STYLE: Automatic CURRENT_PROJECT_VERSION: 1 DEVELOPMENT_ASSET_PATHS: "\"Sora/Preview Content\"" + DEVELOPMENT_TEAM: ${DEVELOPMENT_TEAM} ENABLE_HARDENED_RUNTIME: YES ENABLE_PREVIEWS: YES GENERATE_INFOPLIST_FILE: YES |