Return the returncode

This commit is contained in:
Patrick Jentsch 2021-04-12 09:26:21 +02:00
parent 8105edfd1b
commit 4e7669d009

View File

@ -4,6 +4,7 @@
from argparse import ArgumentParser
import os
import subprocess
import sys
CONTAINER_IMAGE = 'gitlab.ub.uni-bielefeld.de:4567/sfb1288inf/nlp:1.0.0'
CONTAINER_INPUT_DIR = '/input'
@ -34,4 +35,4 @@ if args.log_dir is not None:
cmd.append(CONTAINER_IMAGE)
cmd += remaining_args
subprocess.run(cmd)
sys.exit(subprocess.run(cmd).returncode)