Change-Id: I44a96bc220b4281b50cefc35bf9114f62d6ff10a
Signed-off-by: Yaroslav Brustinov <[email protected]>
dst = dst)
ret = os.system(cmd)
if ret:
- bld.fatal("cmd '%s' exited with return status" % (cmd, ret))
+ bld.fatal("cmd '%s' exited with return status: %s" % (cmd, ret))
def rsync_ext(bld, src, dst):
dst = dst)
ret = os.system(cmd)
if ret:
- bld.fatal("cmd '%s' exited with return status" % (cmd, ret))
+ bld.fatal("cmd '%s' exited with return status: %s" % (cmd, ret))
def publish(bld):