Fix actually returning status from fast-driver

This commit is contained in:
Dan Smith 2023-01-29 07:45:02 -08:00 committed by Dan Smith
parent 8c47d187c0
commit eeae0f7a6f

View File

@ -47,4 +47,4 @@ if driver_exp:
args += ['-k', driver_exp]
args += sys.argv[1:]
print(args)
subprocess.call(args)
sys.exit(subprocess.call(args))