diff options
| author | ruki <[email protected]> | 2018-09-19 23:39:43 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-09-19 15:58:19 +0800 |
| commit | ec49cc61a1b0c14319c63457e4d46ec7134afa8a (patch) | |
| tree | e224b59909a0d6fb1f8910afb165f86ee528be49 /xmake/modules/utils/archive/extract.lua | |
| parent | 5b8f5935928e420cbfe31cd31586f3132a266c63 (diff) | |
fix unzip verbose info
Diffstat (limited to 'xmake/modules/utils/archive/extract.lua')
| -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 ff2c4c6bf..076119dec 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -180,7 +180,7 @@ function _extract_using_unzip(archivefile, outputdir, extension) -- init argv local argv = {} - if option.get("verbose") then + if not option.get("verbose") then table.insert(argv, "-q") end table.insert(argv, archivefile) |
