Do not normalize rootpath option as it is a URL. Fixes #1234

This commit is contained in:
Luke Page
2013-03-20 08:14:17 +00:00
parent 2e0afb458b
commit 285f4ac820

View File

@@ -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":