Add errorlevel.py.

This commit is contained in:
voussoir 2020-05-14 21:49:59 -07:00
parent 6aeefcb4b1
commit 07e4844303

3
errorlevel.py Normal file
View file

@ -0,0 +1,3 @@
import sys
status = int(sys.argv[1])
raise SystemExit(status)