diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-09-27 16:33:48 +0200 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-09-27 16:33:48 +0200 |
commit | d03c7efca69544200f9d2c3743f610e172f2cf04 (patch) | |
tree | 9f2d35fee2017593023d36cb90c4e86797caaa97 | |
parent | df1e8d9e617c0ce3ec9c899aa1f08773532bb6b0 (diff) | |
download | luarocks-d03c7efca69544200f9d2c3743f610e172f2cf04.tar.gz luarocks-d03c7efca69544200f9d2c3743f610e172f2cf04.tar.bz2 luarocks-d03c7efca69544200f9d2c3743f610e172f2cf04.zip |
ditch some more output
-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. |