diff options
| author | ruki <[email protected]> | 2025-11-12 12:03:10 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-12 12:03:10 +0800 |
| commit | 1122e6fe0f3c8724cef76b7b48c1f27d4257916a (patch) | |
| tree | 995dd0bea36ca97d3aabd0585be711e2d6261e11 /xmake/modules | |
| parent | efae9723bd484e50474a7f29b0cd4f84e7346a20 (diff) | |
| parent | a75e13d6c8818d191d7e38681e99d0fbb494e3da (diff) | |
Merge pull request #7017 from qudix/dev
fix: lock_packages typo
Diffstat (limited to 'xmake/modules')
| -rw-r--r-- | xmake/modules/private/action/require/impl/lock_packages.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/action/require/impl/lock_packages.lua b/xmake/modules/private/action/require/impl/lock_packages.lua index 40906766a..f51092b47 100644 --- a/xmake/modules/private/action/require/impl/lock_packages.lua +++ b/xmake/modules/private/action/require/impl/lock_packages.lua @@ -56,7 +56,7 @@ end function main(packages) if project.policy("package.requires_lock") then local plat = config.plat() or os.subhost() - local arch = config.arch() or so.subarch() + local arch = config.arch() or os.subarch() local key = plat .. "|" .. arch local results = os.isfile(project.requireslock()) and io.load(project.requireslock()) or {} results.__meta__ = results.__meta__ or {} |
