OpenSlides/make/__main__.py
Oskar Hahn 78924f966f Get rid of Fabric by creating own scripts
Changed travis to call the tests directly
2014-10-10 18:59:32 +02:00

14 lines
263 B
Python

import sys
import commands # noqa
from parser import parser
if len(sys.argv) < 2:
args = parser.parse_args(['--help'])
else:
args = parser.parse_args()
# Runs the command end exits the script with the return-code of the command
exit(args.func(args))