diff options
| author | Shiffted <[email protected]> | 2026-06-03 17:08:36 +0200 |
|---|---|---|
| committer | Shiffted <[email protected]> | 2026-06-03 17:11:15 +0200 |
| commit | 7bd5de7e8c165cc85d45773d3592fc7b84cb928c (patch) | |
| tree | 067f86ef8e360ab674a65a7c7c9e4f8dc949b208 | |
| parent | c2dd4195391125636743b9ebb70a794349a6f7ce (diff) | |
Fix missing paren in package loading function
| -rw-r--r-- | xmake/modules/private/action/require/impl/package.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/private/action/require/impl/package.lua b/xmake/modules/private/action/require/impl/package.lua index 53c3d627d..3ad758c3a 100644 --- a/xmake/modules/private/action/require/impl/package.lua +++ b/xmake/modules/private/action/require/impl/package.lua @@ -957,8 +957,8 @@ function _load_package(packagename, requireinfo, opt) -- load base package if package and package:get("base") then - _load_package_from_base(package, package:get("base", { - name = requireinfo.reponame, locked_repo = locked_requireinfo and locked_requireinfo.repo})) + _load_package_from_base(package, package:get("base"), { + name = requireinfo.reponame, locked_repo = locked_requireinfo and locked_requireinfo.repo}) end -- load package from system |
