From f4731c797493a53f11ef8991fc3709c9cc62dd8d Mon Sep 17 00:00:00 2001 From: Mathieu Gamache Date: Tue, 17 Dec 2024 14:17:47 -0500 Subject: [PATCH] Remove logging --- Build.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/Build.ps1 b/Build.ps1 index ebd52e8..feb9cc6 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -7,8 +7,6 @@ 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) }