これは、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