From 285f4ac8201657977ddd3d5dbb03e1e82ea31807 Mon Sep 17 00:00:00 2001 From: Luke Page Date: Wed, 20 Mar 2013 08:14:17 +0000 Subject: [PATCH] Do not normalize rootpath option as it is a URL. Fixes #1234 --- bin/lessc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lessc b/bin/lessc index 5ecca5df..da4a1c97 100755 --- a/bin/lessc +++ b/bin/lessc @@ -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":