fixed issue when casper executable is symlinked
Showing
1 changed file
with
7 additions
and
1 deletions
1 | #!/usr/bin/env bash | 1 | #!/usr/bin/env bash |
2 | 2 | ||
3 | CASPERJS_HOME="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" | 3 | CASPER_EXECUTABLE=${BASH_SOURCE[0]} |
4 | |||
5 | if [ -e "$CASPER_EXECUTABLE" ]; then | ||
6 | CASPER_EXECUTABLE="$( readlink $CASPER_EXECUTABLE )" | ||
7 | fi | ||
8 | |||
9 | CASPERJS_HOME="$( cd -PL "$( dirname "$CASPER_EXECUTABLE" )" && cd .. && pwd )" | ||
4 | 10 | ||
5 | phantomjs $CASPERJS_HOME/casper.js --casper-path=$CASPERJS_HOME $* | 11 | phantomjs $CASPERJS_HOME/casper.js --casper-path=$CASPERJS_HOME $* | ... | ... |
-
Please register or sign in to post a comment