Tagged Questions
2
votes
1answer
601 views
Calling java from Bash: “Cannot execute binary file”
I have this simple Bash script:
#!/bin/bash
java -jar ClosureCompiler/compiler.jar --js ../src/typescript.js --js ../src/ts-compiler.js --js_output_file TSCompiler.js
I'm getting this error when I ...