I see examples that print output but where does it go? Its difficult to tell whats running or whats going wrong with this. I’m hoping someone knows where the output from this script goes.
2 Answers
2You can click on Open Editor Log in the Console Window and it will show you all postprocessing
I simply run my script dumping all output into a file in /tmp.
For example
#!/bin/sh
exec &> /tmp/output.txt
echo "This shows up in /tmp/output.txt"
After I run the build process through Unity, I look in that file to see if anything went wrong.