Comparing version 1.1.0 to 1.1.1
@@ -59,2 +59,5 @@ // creates a zip file using either the native `zip` command if avaliable, | ||
fs.stat(source, function(err, stats) { | ||
if (err) { | ||
return next(err); | ||
} | ||
if (stats.isDirectory()) { | ||
@@ -61,0 +64,0 @@ archive.bulk([ |
{ | ||
"name": "bestzip", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Uses OS zip command if avaliable (for better performance and speed) or node.js version if there is no system command avaliable. Can be called via node or command line.", | ||
@@ -5,0 +5,0 @@ "main": "lib/bestzip.js", |
6347
100