@@ -220,7 +220,7 @@ def run(cmd, cwd=None) -> subprocess.CompletedProcess:
220
220
"""Like subprocess.run, with logging before and after the command execution."""
221
221
cmd = [str (arg ) for arg in cmd ]
222
222
cmdstring = shlex .join (cmd )
223
- logging .debug ("Run: %r " , cmdstring )
223
+ logging .debug ("Run: '%s' " , cmdstring )
224
224
result = subprocess .run (
225
225
cmd ,
226
226
cwd = cwd ,
@@ -242,6 +242,21 @@ def run(cmd, cwd=None) -> subprocess.CompletedProcess:
242
242
return result
243
243
244
244
245
+ def run_with_logging (cmd , cwd = None ):
246
+ """Like subprocess.check_call, with logging before the command execution."""
247
+ cmd = list (map (str , cmd ))
248
+ logging .debug ("Run: %s" , shlex .join (cmd ))
249
+ with subprocess .Popen (cmd , cwd = cwd , encoding = "utf-8" ) as p :
250
+ try :
251
+ for line in p .stdout :
252
+ logging .debug (">>>> %s" , line .rstrip ())
253
+ except :
254
+ p .kill ()
255
+ raise
256
+ if return_code := p .poll ():
257
+ raise subprocess .CalledProcessError (return_code , cmd [0 ])
258
+
259
+
245
260
def changed_files (left , right ):
246
261
"""Compute a list of different files between left and right, recursively.
247
262
Resulting paths are relative to left.
@@ -728,7 +743,7 @@ def is_mac():
728
743
self .versions ,
729
744
self .checkout / "Doc" / "tools" / "templates" / "indexsidebar.html" ,
730
745
)
731
- run (
746
+ run_with_logging (
732
747
[
733
748
"make" ,
734
749
"-C" ,
0 commit comments