diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2013-09-27 10:15:34 -0700 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2013-09-27 10:15:34 -0700 |
commit | 44a397f4e0b3e2d802104706b84a8ecc6473d4ed (patch) | |
tree | 9f2d35fee2017593023d36cb90c4e86797caaa97 /src | |
parent | df1e8d9e617c0ce3ec9c899aa1f08773532bb6b0 (diff) | |
parent | d03c7efca69544200f9d2c3743f610e172f2cf04 (diff) | |
download | luarocks-44a397f4e0b3e2d802104706b84a8ecc6473d4ed.tar.gz luarocks-44a397f4e0b3e2d802104706b84a8ecc6473d4ed.tar.bz2 luarocks-44a397f4e0b3e2d802104706b84a8ecc6473d4ed.zip |
Merge pull request #159 from Tieske/missed_ones
ditch some more output
Diffstat (limited to 'src')
-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. |