mirror of
https://github.com/Xahau/xahaud.git
synced 2026-04-29 15:37:46 +00:00
8 lines
134 B
Python
Executable File
8 lines
134 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
from ripple.util import Sign
|
|
|
|
result = Sign.run_command(sys.argv[1:])
|
|
sys.exit(0 if result else -1)
|