diff options
-rw-r--r-- | src/luarocks/fs/win32/tools.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/luarocks/fs/win32/tools.lua b/src/luarocks/fs/win32/tools.lua index b8f9bd36..2e125923 100644 --- a/src/luarocks/fs/win32/tools.lua +++ b/src/luarocks/fs/win32/tools.lua | |||
@@ -229,7 +229,7 @@ end | |||
229 | -- additional arguments. | 229 | -- additional arguments. |
230 | -- @return boolean: true on success, false on failure. | 230 | -- @return boolean: true on success, false on failure. |
231 | function zip(zipfile, ...) | 231 | function zip(zipfile, ...) |
232 | return fs.execute(vars.SEVENZ.." a -tzip", zipfile, ...) | 232 | return fs.execute_quiet(vars.SEVENZ.." a -tzip", zipfile, ...) |
233 | end | 233 | end |
234 | 234 | ||
235 | --- Uncompress files from a .zip archive. | 235 | --- Uncompress files from a .zip archive. |
@@ -237,7 +237,7 @@ end | |||
237 | -- @return boolean: true on success, false on failure. | 237 | -- @return boolean: true on success, false on failure. |
238 | function unzip(zipfile) | 238 | function unzip(zipfile) |
239 | assert(zipfile) | 239 | assert(zipfile) |
240 | return fs.execute(vars.SEVENZ.." x", zipfile) | 240 | return fs.execute_quiet(vars.SEVENZ.." x", zipfile) |
241 | end | 241 | end |
242 | 242 | ||
243 | --- Test is pathname is a directory. | 243 | --- Test is pathname is a directory. |
@@ -285,7 +285,7 @@ end | |||
285 | -- @param archive string: Filename of archive. | 285 | -- @param archive string: Filename of archive. |
286 | -- @return boolean : success status | 286 | -- @return boolean : success status |
287 | local function gunzip(archive) | 287 | local function gunzip(archive) |
288 | return fs.execute(vars.SEVENZ.." x", archive) | 288 | return fs.execute_quiet(vars.SEVENZ.." x", archive) |
289 | end | 289 | end |
290 | 290 | ||
291 | --- Unpack an archive. | 291 | --- Unpack an archive. |