From 279e361adf29e3ced475a19f6bb7750c544a95b2 Mon Sep 17 00:00:00 2001 From: Mathieu Gamache Date: Tue, 17 Dec 2024 13:38:04 -0500 Subject: [PATCH] Try debug build.ps1 --- Build.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Build.ps1 b/Build.ps1 index feb9cc6..ebd52e8 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -7,6 +7,8 @@ Begin { Process { function Exec([scriptblock]$Command) { & $Command + $exitCode = $LASTEXITCODE + Write-Output ("Command executed with exit code: {0}" -f $exitCode) if ($LASTEXITCODE -ne 0) { throw ("An error occurred while executing command: {0}" -f $Command) }