Use sys.exit() in Manifests.py to run as program

This commit is contained in:
wilsonianb
2016-05-18 15:23:14 -07:00
committed by seelabs
parent 21c563f83a
commit f2f195f43e

View File

@@ -4,4 +4,4 @@ import sys
from ripple.util import Sign
result = Sign.run_command(sys.argv[1:])
exit(0 if result else -1)
sys.exit(0 if result else -1)