Created
September 2, 2024 02:24
-
-
Save kyubuns/672cf53f728c6d529113c4502de82efa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unity.exe \ | |
-batchmode \ | |
-logFile EditorLog.txt \ | |
-projectPath ProjectPath | |
process_id=$! | |
tail -f EditorLog.txt & | |
tail_pid=$! | |
wait $process_id | |
unity_status=$? | |
kill $tail_pid | |
exit $unity_status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment