Skip to content

Commit 64b7736

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

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
@@ -309,7 +309,7 @@ def main(url, args):
309309
try:
310310
print_err(subprocess.check_output(cmd))
311311
except subprocess.CalledProcessError as exc:
312-
out = output.encode('utf-8')
312+
out = exc.output.encode('utf-8')
313313
print_err(out)
314314
# Conda build fails intermittently on Windows when cleaning
315315
# up at the end. Ignore these errors on Windows.

0 commit comments

Comments
 (0)