Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
fd2b1980
...
fd2b1980ce5a2e8dc89a5bb1ba19da9cb7b760b7
authored
2014-03-10 18:42:36 -0500
by
Austin Rasmussen
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Using 2 arg overload of Path.Combine for .NET 3
1 parent
d02bdb17
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/casperjs.cs
src/casperjs.cs
View file @
fd2b198
...
...
@@ -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
(
Path
.
Combine
(
CASPER_PATH
,
"bin"
)
,
"bootstrap.js"
)
+
@""""
,
@"--casper-path="""
+
CASPER_PATH
+
@""""
,
"--cli"
});
...
...
Please
register
or
sign in
to post a comment