From 37889531f38a447af475fd23041cd69e5e26c212 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 2 Jan 2019 14:02:39 -0600 Subject: [PATCH] nur/update: drop eval output instead of filling pipe Since nothing reads the pipe, writes block indefinitely once the pipe's buffer is full. --- nur/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nur/update.py b/nur/update.py index b4d0281cb..1cc7202d0 100644 --- a/nur/update.py +++ b/nur/update.py @@ -50,7 +50,7 @@ import {EVALREPO_PATH} {{ logger.info(f"Evaluate repository {repo.name}") proc = subprocess.Popen( - cmd, env=dict(PATH=os.environ["PATH"]), stdout=subprocess.PIPE + cmd, env=dict(PATH=os.environ["PATH"]), stdout=subprocess.DEVNULL ) try: res = proc.wait(5)