Skip to content

Commit 0171089

Browse files
committed
add check and revert errors
1 parent 22069f5 commit 0171089

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/concierge.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -871,8 +871,9 @@ def run(self, package_path, args):
871871
cwd=cwd,
872872
env=self.env(),
873873
stdout=subprocess.PIPE,
874-
stderr=subprocess.STDOUT #,
875-
#errors="ignore"
874+
stderr=subprocess.STDOUT,
875+
check=True,
876+
errors="ignore"
876877
)
877878
sys.stdout.write(proc.stdout)
878879
proc.check_returncode()

0 commit comments

Comments
 (0)