diff options
| author | ruki <[email protected]> | 2026-06-17 23:49:50 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-06-17 23:49:50 +0800 |
| commit | eba488dafedd88c1f19e23132276872aac877b73 (patch) | |
| tree | a577ac74585545b465b12caa03480d7665f2f5d6 /xmake/rules/xcode/application | |
| parent | ba2df770b8430a8f8e593d34dc05de051a59a1bd (diff) | |
add targets arugment support
Diffstat (limited to 'xmake/rules/xcode/application')
| -rw-r--r-- | xmake/rules/xcode/application/install.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/xcode/application/install.lua b/xmake/rules/xcode/application/install.lua index 1f1578fe1..4d5053240 100644 --- a/xmake/rules/xcode/application/install.lua +++ b/xmake/rules/xcode/application/install.lua @@ -32,7 +32,7 @@ function _install_for_ios(target) -- get *.ipa file local ipafile = path.join(path.directory(appdir), path.basename(appdir) .. ".ipa") if not os.isfile(ipafile) or os.mtime(target:targetfile()) > os.mtime(ipafile) then - task.run("package", {target = target:name()}) + task.run("package", {targets = {target:name()}}) end assert(os.isfile(ipafile), "please run `xmake package` first!") |
