Productionize manifest generator.

* Better output.
* Better error checking and reporting.
* Clearer names.
* Python style.
This commit is contained in:
Tom Ritchford
2015-04-17 15:26:34 -04:00
committed by seelabs
parent c26b8124e5
commit 31d352b3aa
9 changed files with 491 additions and 289 deletions

7
bin/python/Manifest.py Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python
import sys
from ripple.util import Sign
result = Sign.run_command(sys.argv[1:])
exit(0 if result else -1)