From 35cd1d3ff69f32bd4e105b63718bebac07e590d2 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 13 Sep 2012 09:42:31 -0400 Subject: [PATCH] fixed bug with all.min.css --- lib/server/appcache.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/server/appcache.js b/lib/server/appcache.js index 09aee315..49869388 100644 --- a/lib/server/appcache.js +++ b/lib/server/appcache.js @@ -20,8 +20,11 @@ setWatachFunctions(); exports.createManifest = function(){ var lAllNames = cloudRequire(process.cwd() + '/hashes'); if(lAllNames) - for(var lName in lAllNames) + for(var lName in lAllNames){ + if(lName.indexOf('min')) + lName = './min/' + lName; exports.watch(lName); + } processManifest(); };