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
f1f4386f
...
f1f4386f1dbdee2b6adfa6fea9426607471e0b4d
authored
2012-02-09 08:13:25 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
reverting
33bd0b17
as the fix for #49, #50 breaks everything else
1 parent
33bd0b17
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
bin/casperjs
bin/casperjs
View file @
f1f4386
...
...
@@ -13,8 +13,8 @@ def resolve(path):
PHANTOMJS_EXEC
=
os
.
environ
.
get
(
'PHANTOMJS_EXECUTABLE'
,
'phantomjs'
)
.
split
(
' '
)
CASPER_PATH
=
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
resolve
(
__file__
)),
'..'
))
CASPER_ARGS
=
PHANTOMJS_EXEC
CASPER_ARGS
.
extend
(
sys
.
argv
[
1
:])
CASPER_ARGS
.
extend
([
os
.
path
.
join
(
CASPER_PATH
,
'bin'
,
'bootstrap.js'
),
'--casper-path=
%
s'
%
CASPER_PATH
,
'--cli'
])
CASPER_ARGS
.
extend
(
sys
.
argv
[
1
:])
try
:
status
=
subprocess
.
call
(
CASPER_ARGS
)
...
...
Please
register
or
sign in
to post a comment