Merge pull request #7 from davesque/fix-readlink

Make template filler more BSD friendly
This commit is contained in:
Jason Carver 2018-06-07 12:04:01 -07:00 committed by GitHub
commit 56e4b20080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ set -o errexit
set -o nounset
set -o pipefail
PROJECT_ROOT=$(dirname $(dirname $(readlink -f $0)))
PROJECT_ROOT=$(dirname $(dirname $(python -c 'import os, sys; sys.stdout.write(os.path.realpath(sys.argv[1]))' "$0")))
echo "What is your python module name?"
read MODULE_NAME