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
349044f7
...
349044f729e5a653fd61520765cac367ddee5671
authored
2012-04-09 19:50:29 +0200
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixes #88 - Can't open 'bootstrap.js' using symbolic links (@anthony-teinturier)
1 parent
6cc9c8ee
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
bin/casperjs
bin/casperjs
View file @
349044f
...
...
@@ -7,7 +7,8 @@ import sys
def
resolve
(
path
):
if
os
.
path
.
islink
(
path
):
return
resolve
(
os
.
readlink
(
path
))
path
=
os
.
path
.
join
(
os
.
path
.
dirname
(
path
),
os
.
readlink
(
path
))
return
resolve
(
path
)
return
path
PHANTOMJS_NATIVE_ARGS
=
[
...
...
Please
register
or
sign in
to post a comment