fix(server) Dir + Name -> path.join(Dir, Name)

This commit is contained in:
coderaiser 2013-08-09 13:14:02 +00:00
parent 0536ecfd1f
commit ba84728be2

View file

@ -178,7 +178,7 @@
Util.log(Path.basename(lName));
lName = DIR + lName;
lName = Path.join(DIR, lName);
lMin = Minify.allowed,
lExt = Util.getExtension(lName),
lResult = lExt === '.js' && lMin.js ||