Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
+ stdio: ignore
  • Loading branch information
fritx committed Apr 29, 2016
1 parent 9c231eb commit c876d0e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion index.js
Expand Up @@ -28,7 +28,9 @@ function forUnix (inPath, outPath, callback) {
function run (bin, args, callback) {
callback = onceify(callback)

var prc = spawn(bin, args)
var prc = spawn(bin, args, {
stdio: 'ignore'
})
prc.on('error', function (err) {
callback(err)
})
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,8 +1,8 @@
{
"name": "cross-unzip",
"version": "0.0.1",
"version": "0.0.2",
"description": "Cross-platform 'native' unzip in Node.js",
"tags": ["7zip", "7z", "zip", "unzip"],
"keywords": ["7zip", "7z", "zip", "unzip"],
"homepage": "https://github.com/fritx/cross-unzip",
"license": "GNU LGPL",
"devDependencies": {
Expand Down

0 comments on commit c876d0e

Please sign in to comment.