mirror of
https://github.com/less/less.js.git
synced 2026-01-22 13:48:03 -05:00
Do not normalize rootpath option as it is a URL. Fixes #1234
This commit is contained in:
@@ -107,7 +107,7 @@ args = args.filter(function (arg) {
|
||||
sys.puts("rootpath option requires a parameter");
|
||||
continueProcessing = false;
|
||||
} else {
|
||||
options.rootpath = path.normalize(match[2] + '/').replace('\\', '/');
|
||||
options.rootpath = match[2].replace(/\\/g, '/');
|
||||
}
|
||||
break;
|
||||
case "ru":
|
||||
|
||||
Reference in New Issue
Block a user