# HG changeset patch # User Matt Harbison # Date 2021-08-09 23:24:46 # 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 --git a/contrib/install-windows-dependencies.ps1 b/contrib/install-windows-dependencies.ps1 --- a/contrib/install-windows-dependencies.ps1 +++ b/contrib/install-windows-dependencies.ps1 @@ -91,6 +91,8 @@ function Secure-Download($url, $path, $s } function Invoke-Process($path, $arguments) { + echo "$path $arguments" + $p = Start-Process -FilePath $path -ArgumentList $arguments -Wait -PassThru -WindowStyle Hidden if ($p.ExitCode -ne 0) {