From 1a77010ea349d755f5be4da0368cfba2975373f2 Mon Sep 17 00:00:00 2001 From: Matthew Andrews Date: Sun, 26 Oct 2014 10:48:15 +0000 Subject: [PATCH] Respect static --cache 0 --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index 2f73585..5f6c72c 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -75,7 +75,7 @@ if (argv.version){ process.exit(0); } -if (argv.cache){ +if ('cache' in argv){ (options = options || {}).cache = argv.cache; }