do not use uppercase in file names

mend
This commit is contained in:
nightwing 2013-03-20 18:43:09 +04:00
commit dda65a5585
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
*
* Copyright (c) 2010, Ajax.org B.V.
* All rights reserved.
*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright

View file

@ -203,8 +203,8 @@ function quoteString(str) {
return '"' + str.replace(/\\/, "\\\\").replace(/"/g, '\\"').replace(/\n/g, "\\\n") + '"';
}
var cssTemplate = fs.readFileSync(__dirname + "/Theme.tmpl.css", "utf8");
var jsTemplate = fs.readFileSync(__dirname + "/Theme.tmpl.js", "utf8");
var cssTemplate = fs.readFileSync(__dirname + "/theme.tmpl.css", "utf8");
var jsTemplate = fs.readFileSync(__dirname + "/theme.tmpl.js", "utf8");
function normalizeStylesheet(rules) {
for (var i = rules.length; i--; ) {