# HG changeset patch # User Matt Harbison # Date 1628551486 14400 # Node ID fb7d17496aca1b51791e00343963f4a45ddeecf2 # Parent 6ec897345b87a6ae027a7a5a91308016f1e9d2e6 contrib: log the command and args for every process installing windows deps This is a little noisier, but makes it simple to debug when things fail. Differential Revision: https://phab.mercurial-scm.org/D11272 diff -r 6ec897345b87 -r fb7d17496aca contrib/install-windows-dependencies.ps1 --- a/contrib/install-windows-dependencies.ps1 Fri Jul 23 10:47:12 2021 +0200 +++ b/contrib/install-windows-dependencies.ps1 Mon Aug 09 19:24:46 2021 -0400 @@ -91,6 +91,8 @@ } function Invoke-Process($path, $arguments) { + echo "$path $arguments" + $p = Start-Process -FilePath $path -ArgumentList $arguments -Wait -PassThru -WindowStyle Hidden if ($p.ExitCode -ne 0) {