Skip to content

Commit 287b9d4

Browse files
author
Kevin D Smith
committed
Use check_call so that stdout/stderr get printed in Jenkins
1 parent 95fa6af commit 287b9d4

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
@@ -299,7 +299,7 @@ def main(url, args):
299299
shutil.copy(ext, os.path.join('swat', 'lib', platform, ext))
300300

301301
print_err('>' + ' '.join(cmd))
302-
subprocess.check_output(cmd)
302+
subprocess.check_call(cmd)
303303

304304
for ext in glob.glob(os.path.join(tmpext, extbase + '.*')):
305305
print_err('> remove %s' % ext)

0 commit comments

Comments
 (0)