When I press command + B, it says “[Finished in 2.9s with exit code -4]”. What is code -4? How do I fix it? Thanks
[Finished in $$$s with exit code -4]
OdatNurd
#2
The code that’s displayed there is provided by whatever program it was that you executed as part of the build. The only standard thing about application return codes is that 0
means success and anything that’s not 0
means failure.
What -4
means is thus dependent on what it was you were executing at the time, and what you would need to do to get it to not report that is similarly dependent on that.
0 Likes