1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-06 06:28:39 +10:00

Removed unnecessary import sys

This commit is contained in:
Jorde Kang 2019-10-13 17:52:13 +01:00
parent 8926c33ab1
commit c8c1400f93

View File

@ -2,7 +2,7 @@
# 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
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
DIR=$(dirname "${ABS_PATH}")