summaryrefslogtreecommitdiff
path: root/xmake/actions/uninstall
diff options
context:
space:
mode:
authorOpportunity <[email protected]>2020-06-30 11:48:32 +0800
committerOpportunity <[email protected]>2020-06-30 11:48:32 +0800
commit58c8e709cc4677ec6fb5fdfcec1958fab6743709 (patch)
treedce1ed26d57764f4fc3e67538106793c3e1e54b2 /xmake/actions/uninstall
parentf03a57c21313e1f155294c8bad56cc933c71065f (diff)
fix auto complete
Diffstat (limited to 'xmake/actions/uninstall')
-rw-r--r--xmake/actions/uninstall/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/uninstall/xmake.lua b/xmake/actions/uninstall/xmake.lua
index 4f70922c2..882499668 100644
--- a/xmake/actions/uninstall/xmake.lua
+++ b/xmake/actions/uninstall/xmake.lua
@@ -52,7 +52,7 @@ task("uninstall")
"or $ PREFIX=local xmake uninstall" }
, { }
, {nil, "target", "v", nil , "The target name. It will uninstall all default targets if this parameter is not specified."
- , values = function () return try{ function () return table.keys(import("core.project.project").targets()) end } end }
+ , values = function (complete, opt) return import("private.utils.complete_helper.targets")(complete, opt) end }
}
}