Skip to content

Commit b211dd7

Browse files
committed
fixup! Add custom action and unified Linux build
1 parent 1575c49 commit b211dd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def run_one(name, cmd, logname, env, args):
7878
logfd = None
7979
try:
8080
logfd = open(logname, 'wb')
81-
proc = Popen(cmd, stdout=PIPE, stderr=STDOUT, cwd=args.workdir, env=(os.environ | env))
81+
proc = Popen(cmd, stdout=PIPE, stderr=STDOUT, cwd=args.workdir, env=(dict(os.environ) | env))
8282
read_process(proc, args.timeout, args.verbose, logfd)
8383
proc.wait()
8484
status = proc.returncode

0 commit comments

Comments
 (0)