From 18d71f579ad00cd87953ac1a28bc50417c03e72a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 13 Sep 2012 09:43:10 -0400 Subject: [PATCH] minor changes --- lib/server/appcache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server/appcache.js b/lib/server/appcache.js index 49869388..b97c52e5 100644 --- a/lib/server/appcache.js +++ b/lib/server/appcache.js @@ -21,7 +21,7 @@ exports.createManifest = function(){ var lAllNames = cloudRequire(process.cwd() + '/hashes'); if(lAllNames) for(var lName in lAllNames){ - if(lName.indexOf('min')) + if(lName.indexOf('min') > 0) lName = './min/' + lName; exports.watch(lName); }