From 665f4454a8b9e7bbefe5335cecd8ac98ab68a186 Mon Sep 17 00:00:00 2001 From: johnson2427 Date: Sat, 26 Oct 2024 04:19:52 -0500 Subject: [PATCH] fix: pipe only the stdout --- silverback/_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silverback/_cli.py b/silverback/_cli.py index 143b1ad1..76018dfd 100644 --- a/silverback/_cli.py +++ b/silverback/_cli.py @@ -205,7 +205,7 @@ def build(generate, path): result = subprocess.run( command, stdout=subprocess.PIPE, - stderr=subprocess.PIPE, + stderr=subprocess.STDOUT, text=True, check=True, )