diff options
| author | ruki <[email protected]> | 2025-09-20 00:50:30 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-09-20 00:50:30 +0800 |
| commit | 286b5301449d1cd26c07c05d37d39fe424e678c0 (patch) | |
| tree | 3b3bc77f6ea077398957b3dfe39ff20d11e8f139 /xmake/rules/xcode/application | |
| parent | 072c91d17ec55b94e9af3ce7fed09d885b2c2075 (diff) | |
fix mobile_provision error
Diffstat (limited to 'xmake/rules/xcode/application')
| -rw-r--r-- | xmake/rules/xcode/application/build.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/rules/xcode/application/build.lua b/xmake/rules/xcode/application/build.lua index 4d0625bd7..a98baf57a 100644 --- a/xmake/rules/xcode/application/build.lua +++ b/xmake/rules/xcode/application/build.lua @@ -86,9 +86,10 @@ function main (target, opt) end -- generate embedded.mobileprovision to *.app/embedded.mobileprovision + local mobile_provision local mobile_provision_embedded = path.join(bundledir, "embedded.mobileprovision") if target:is_plat("iphoneos") then - local mobile_provision = target:values("xcode.mobile_provision") or codesign.xcode_mobile_provision() + mobile_provision = target:values("xcode.mobile_provision") or codesign.xcode_mobile_provision() if mobile_provision then os.tryrm(mobile_provision_embedded) local provisions = codesign.mobile_provisions() |
