瀏覽代碼

Removed unnecessary import sys (#46)

pull/53/head
Jorde Kang Virgil Dupras 4 年之前
父節點
當前提交
5460f28cfb
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      tools/zasm.sh

+ 1
- 1
tools/zasm.sh 查看文件

@@ -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}")


Loading…
取消
儲存