Wait for command in worlddump

Wait for the command to complete and catch errors when running
commands.

Change-Id: I2c93b3bdd930ed8564e33bd2d45fe4e3f08f03f5
This commit is contained in:
Ian Wienand 2015-07-01 06:14:01 +10:00
parent 432268b17b
commit 99440f9d59
1 changed files with 5 additions and 2 deletions

View File

@ -21,9 +21,9 @@ import datetime
import fnmatch
import os
import os.path
import subprocess
import sys
from subprocess import Popen
def get_options():
parser = argparse.ArgumentParser(
@ -47,7 +47,10 @@ def _dump_cmd(cmd):
print cmd
print "-" * len(cmd)
print
Popen(cmd, shell=True)
try:
subprocess.check_call(cmd, shell=True)
except subprocess.CalledProcessError:
print "*** Failed to run: %s" % cmd
def _header(name):