17 lines
337 B
Python
17 lines
337 B
Python
#!/usr/bin/python
|
|
import commands
|
|
|
|
cmd_list = [
|
|
'lib/wnf.py --pull origin master',
|
|
'lib/wnf.py -l',
|
|
'lib/wnf.py --sync_all'
|
|
]
|
|
|
|
for cmd in cmd_list:
|
|
stat, op = commands.getstatusoutput(cmd)
|
|
if stat != 0:
|
|
print "something went wrong"
|
|
print "cannot proceed with update"
|
|
print "status: %s" % stat
|
|
print "output: %s" % op
|
|
break |