From 8ccb877f6f40b02f06bcc58d0d781ad93fc8980f Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Wed, 28 Jun 2023 21:31:41 -0500
Subject: [PATCH] fix: check_output

---
 containers/jug/setup_detectors.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/containers/jug/setup_detectors.py b/containers/jug/setup_detectors.py
index 14f1cf703..a25ad9fba 100755
--- a/containers/jug/setup_detectors.py
+++ b/containers/jug/setup_detectors.py
@@ -120,7 +120,7 @@ if __name__ == '__main__':
                 'cmake --build /tmp/build -j$(($(($(nproc)/4))+1)) -- install'
             ]
             print(' '.join(cmd))
-            subprocess.check_call(' '.join(cmd), shell=True)
+            subprocess.check_output(' '.join(cmd), shell=True)
             ## write version info to jug_info if available
             if os.path.exists('/etc/jug_info'):
                 cmd = ['cd /tmp/det',
-- 
GitLab