2
Scalaプログラムをテストするための簡単なバッチスクリプトを作成しようとしています。Scala Bashテストスクリプト
#!/bin/bash
scala ./build/classes/MyClass "../../res/some_file.txt"
これが返されます:
Exception in thread "main" java.lang.RuntimeException: Cannot figure out how to run target: ./build/classes/MyClass
を私はclassesディレクトリのランニングにいる場合:予想通り
#!/bin/bash
scala MyClass "../../res/some_file.txt"
作品をスクリプトは、このようなものでなければなりません。
私はここで間違っていますか?
-Lee
'。/ build'を' \ 'pwd \'/build'に置き換えてみましたか? –
"pwd'/buildが意味することに従います。 – LeeG
'scala \' pwd \ '/ build/classes/MyClass" ../../ res/some_file.txt " –