Commit d02bdb17 d02bdb17699b3276c1540ff3ef2ad1513ea4d1c7 by Austin Rasmussen

Removing hardcoded Windows path delimiter

Allowing for .NET to determine the OS path delimiter when combining the
path for the bootstrap.js file.
1 parent 1e16807e
No preview for this file type
......@@ -149,7 +149,7 @@ class casperjs {
var CASPER_COMMAND = new List<string>(ENGINE_EXEC);
CASPER_COMMAND.AddRange(ENGINE_ARGS);
CASPER_COMMAND.AddRange(new [] {
@"""" + Path.Combine(CASPER_PATH, "bin\\bootstrap.js") + @"""",
@"""" + Path.Combine(CASPER_PATH, "bin", "bootstrap.js") + @"""",
@"--casper-path=""" + CASPER_PATH + @"""",
"--cli"
});
......