was missing declaration for a variable

sorry bout that. fixed.
This commit is contained in:
wahuneke
2015-03-18 17:43:17 -04:00
parent e19e89d4f4
commit 96ad40dec2

View File

@@ -272,7 +272,7 @@ function printUsage() {
// If input filenames are surrounded in quotes here, strip the quotes.
// Bug #2508
filenames = [args[1], args[2]].map(function (arg) {
var filenames = [args[1], args[2]].map(function (arg) {
var match;
match = arg.match(/^'(.+)'$/);
@@ -494,4 +494,4 @@ function printUsage() {
parseLessFile(false, buffer);
});
}
})();
})();