diff options
| author | ruki <[email protected]> | 2021-02-15 23:37:37 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-02-15 23:37:37 +0800 |
| commit | 79d406d4013d533d5c6bc85855f1b6af8fe3bb2a (patch) | |
| tree | 40b1d2e973a0cf6d003d2049c368e2235d9e163b | |
| parent | 539d59c61df9b1f42b0c5ad0dc15ae40c8cff1d4 (diff) | |
improve unzip
| -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 35e18f20d..c6fae9204 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -276,7 +276,7 @@ function _extract_using_unzip(archivefile, outputdir, extension, opt) end -- init argv - local argv = {} + local argv = {"-o"} -- overwrite existing files without prompting if not option.get("verbose") then table.insert(argv, "-q") end |
