mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
8 lines
130 B
Python
Executable File
8 lines
130 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
from ripple.util import Sign
|
|
|
|
result = Sign.run_command(sys.argv[1:])
|
|
exit(0 if result else -1)
|