这发生在 python 构建中:
#is it executable
print os.access("support/d8/d8", os.X_OK)
#is it there in the shell
os.system("test -f support/d8/d8 && echo \"found\" || echo \"not found\"")
接着:
#run it
os.system("support/d8/d8 --trace_exception with a bunch of files");
输出:
True
found
sh: 1: support/d8/d8: not found
我不明白。它在那里是可执行的。为什么我启动时它不存在。
- travis 构建的链接:https ://travis-ci.org/albertjan/skulpt/builds
- 和存储库的链接:https ://github.com/albertjan/skulpt调用构建脚本
m