Skip to content

Commit 5a6f8c9

Browse files
author
Kevin D Smith
committed
Fix issue with conda build on Windows
1 parent 64b7736 commit 5a6f8c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cicd/tar2conda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def main(url, args):
307307

308308
print_err('>' + ' '.join(cmd))
309309
try:
310-
print_err(subprocess.check_output(cmd))
310+
print_err(subprocess.check_output(cmd).encode('utf-8'))
311311
except subprocess.CalledProcessError as exc:
312312
out = exc.output.encode('utf-8')
313313
print_err(out)

0 commit comments

Comments
 (0)