Codebase list enjarify / 3c2ef4a
Merge pull request #6 from Arctangent1759/patch-1 Change "readlink" to "readlink -f". Storyyeller authored 6 years ago GitHub committed 6 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
3535 echo "Using $PYTHON as Python interpreter"
3636
3737 # Find location of this bash script, and set its directory as the PYTHONPATH
38 export PYTHONPATH=$(dirname "$(readlink "${BASH_SOURCE[0]}")")
38 export PYTHONPATH=$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")
3939
4040 # Now execute the actual program
4141 exec $PYTHON -O -m enjarify.main "$@"