Skip to content
This repository has been archived by the owner on Jun 19, 2020. It is now read-only.

Fixes #269 - Added support for whitespaced path to Windows executable. #1171

Merged
merged 1 commit into from Feb 26, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file modified bin/casperjs.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion src/casperjs.cs
Expand Up @@ -142,7 +142,7 @@ class casperjs {
CASPER_ARGS.Add(arg);
}

var ENGINE_EXEC = new List<string>(ENGINE_EXECUTABLE.Split(' '));
var ENGINE_EXEC = new List<string>(new [] {ENGINE_EXECUTABLE});
var ENGINE_FILE = ENGINE_EXEC[0];
ENGINE_EXEC.RemoveAt(0);

Expand Down