From eba488dafedd88c1f19e23132276872aac877b73 Mon Sep 17 00:00:00 2001 From: ruki Date: Wed, 17 Jun 2026 23:49:50 +0800 Subject: add targets arugment support --- xmake/rules/xcode/application/install.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmake/rules/xcode/application/install.lua') 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!") -- cgit v1.3.1