diff options
| author | Caleb Kiage <[email protected]> | 2023-07-13 12:18:16 +0300 |
|---|---|---|
| committer | Caleb Kiage <[email protected]> | 2023-07-13 12:18:16 +0300 |
| commit | a8c6fb67c0f01e743cb474c501b261a45fa40f0b (patch) | |
| tree | 45632fddaba2f53cb078e9910d3dfd2065849fd1 | |
| parent | b0f468882333adaa3e450422e8aa6fe0f897935a (diff) | |
Keep --force-local handling
| -rw-r--r-- | xmake/modules/utils/archive/extract.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/utils/archive/extract.lua b/xmake/modules/utils/archive/extract.lua index 4a91e1a78..cd5d8eec6 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -45,7 +45,7 @@ function _extract_using_tar(archivefile, outputdir, extension, opt) -- init argv local argv = {} - if is_host("windows") and not os.is_subhost("msys", "cygwin") then + if is_host("windows") then -- force "x:\\xx" as local file local force_local = _g.force_local if force_local == nil then |
