Commit 300dc527 by Jon Maron

fix to first invocation of metadata_start

parent 816486c4
......@@ -127,7 +127,8 @@ def jar(path):
commandline = [prg]
commandline.append("-xf")
commandline.append(path)
return runProcess(commandline)
process = runProcess(commandline)
process.wait()
def is_exe(fpath):
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment