mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-21 02:29:23 +00:00
fixed bug with all.min.css
This commit is contained in:
parent
bc8cea83b7
commit
80bdb6249d
1 changed files with 4 additions and 1 deletions
|
|
@ -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();
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue