We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb306ab commit 70f4e6cCopy full SHA for 70f4e6c
xmake/plugins/pack/wix/main.lua
@@ -31,8 +31,7 @@ function _get_wix()
31
32
-- find makensis
33
local packages = {}
34
- local require_version = ">=4.0.0"
35
- local wix = find_tool("wix", {require_version = require_version})
+ local wix = find_tool("wix")
36
if not wix then
37
table.join2(packages, install_packages("wixtoolset"))
38
end
@@ -44,7 +43,7 @@ function _get_wix()
44
43
45
-- we need to force detect and flush detect cache after loading all environments
46
47
- wix = find_tool("wix", {force = true, require_version = require_version})
+ wix = find_tool("wix", {force = true})
48
49
assert(wix, "wix not found (ensure that wix is up to date)!")
50
return wix, oldenvs
0 commit comments