Removed unnecessary import sys (#46)
This commit is contained in:
parent
7f7251d57f
commit
5460f28cfb
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# readlink -f doesn't work with macOS's implementation
|
# readlink -f doesn't work with macOS's implementation
|
||||||
# so, if we can't get readlink -f to work, try python with a realpath implementation
|
# so, if we can't get readlink -f to work, try python with a realpath implementation
|
||||||
ABS_PATH=$(readlink -f "$0" || python -c "import sys, os; print(os.path.realpath('$0'))")
|
ABS_PATH=$(readlink -f "$0" || python -c "import os; print(os.path.realpath('$0'))")
|
||||||
|
|
||||||
# wrapper around ./emul/zasm/zasm that prepares includes CFS prior to call
|
# wrapper around ./emul/zasm/zasm that prepares includes CFS prior to call
|
||||||
DIR=$(dirname "${ABS_PATH}")
|
DIR=$(dirname "${ABS_PATH}")
|
||||||
|
Loading…
Reference in New Issue
Block a user