diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2013-10-09 10:48:22 +0200 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2013-10-09 10:48:22 +0200 |
commit | aafea84d1f5d68844538f56a8b7659a86baeccd9 (patch) | |
tree | 6a372bd96ebe1430e0a956c8ac769d63ec4da00a /src | |
parent | b11a31c0a5c2f19f1632367f6d885885a136d1a1 (diff) | |
parent | ff7c4d70fb15c7ed569aee0e980661638d41637f (diff) | |
download | luarocks-aafea84d1f5d68844538f56a8b7659a86baeccd9.tar.gz luarocks-aafea84d1f5d68844538f56a8b7659a86baeccd9.tar.bz2 luarocks-aafea84d1f5d68844538f56a8b7659a86baeccd9.zip |
Merge remote-tracking branch 'upstream/master' into linux-multiarch
Conflicts:
install.bat
Diffstat (limited to '')
-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. |