Skip to content

Commit

Permalink
Do not normalize rootpath option as it is a URL. Fixes #1234
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeapage committed Mar 20, 2013
1 parent 2e0afb4 commit 285f4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lessc
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit 285f4ac

Please sign in to comment.