summaryrefslogtreecommitdiff
path: root/xmake/modules/utils
diff options
context:
space:
mode:
authorruki <[email protected]>2021-02-15 23:44:13 +0800
committerruki <[email protected]>2021-02-15 23:44:13 +0800
commitae1158ead18a0b646aec263ea85c15cabf0e0b2f (patch)
treec3953f259e7145030c57f2f909c6602f21cfd9a0 /xmake/modules/utils
parent79d406d4013d533d5c6bc85855f1b6af8fe3bb2a (diff)
pass package configs to tools/xmake
Diffstat (limited to 'xmake/modules/utils')
-rw-r--r--xmake/modules/utils/archive/extract.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/utils/archive/extract.lua b/xmake/modules/utils/archive/extract.lua
index c6fae9204..74b8e1fdf 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 = {"-o"} -- overwrite existing files without prompting
+ local argv = {"-o"} -- overwrite existing files without prompting
if not option.get("verbose") then
table.insert(argv, "-q")
end