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
c70392fb
...
c70392fb8f9551db90d72bdff9b66c8f3aaf60f8
authored
2013-09-18 15:08:24 -0600
by
hexid
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Update dotNET app to use slimerjs.bat on Windows machines
1 parent
0d824988
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
bin/casperjs.exe
src/casperjs.cs
bin/casperjs.exe
View file @
c70392f
No preview for this file type
src/casperjs.cs
View file @
c70392f
...
...
@@ -55,7 +55,8 @@ class slimerjs : engine {
return
"SLIMERJS_EXECUTABLE"
;
}
public
string
default_exec
()
{
return
"slimerjs"
;
// use bat file on windows
return
(
Path
.
DirectorySeparatorChar
==
'/'
)
?
"slimerjs"
:
"slimerjs.bat"
;
}
public
string
[]
native_args
()
{
return
new
[]
{
...
...
Please
register
or
sign in
to post a comment