Actually no, if we return -1 in bash, it will be interpreted as 255 per https://tldp.org/LDP/abs/html/exitcodes.html
if I can go back in time, I would never return exit code -1 for a failure in Linux. 1 would be ideal in this case.
Let write a simple bash script test – to copy non-existent file
the execution will fail and exit status code is 1 as expected so let’s modify this script and return the exit status code to -1.
Since we alter our script by checking if exit code is not zero, we instead return -1. As a result, bash interprets it as out of range since exit takes only integer args in the range 0 – 255 and therefore interprets it as 255 instead of -1.