mirror of https://github.com/jimsalterjrs/sanoid
Fix #91: do not use exit codes > 255
Exit codes > 256 are treated by bash as `exit_code % 256`, which is confusing. Furthermore, using code 256 is particularly problematic, as 256%256=0, which means success, and is not was was intended here. For further information about special exit codes, see http://tldp.org/LDP/abs/html/exitcodes.html.
This commit is contained in:
parent
1966d7f11b
commit
47ff88db9d
Loading…
Reference in New Issue