From 0b0b9b7ee6ddf86fa618b6d1afa0b6d8e90b019a Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 24 Apr 2025 08:56:03 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Remove=20redundant=20?= =?UTF-8?q?assignment=20of=20Debug=20and=20Verbose=20preferences=20in=20ex?= =?UTF-8?q?ec.ps1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/exec.ps1 | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/exec.ps1 b/scripts/exec.ps1 index da504aae..c9b25b2e 100644 --- a/scripts/exec.ps1 +++ b/scripts/exec.ps1 @@ -3,10 +3,7 @@ param() $DebugPreference = $env:PSMODULE_INVOKE_PESTER_INPUT_Debug -eq 'true' ? 'Continue' : 'SilentlyContinue' $VerbosePreference = $env:PSMODULE_INVOKE_PESTER_INPUT_Verbose -eq 'true' ? 'Continue' : 'SilentlyContinue' - $PSStyle.OutputRendering = 'Ansi' -$DebugPreference = $env:PSMODULE_INVOKE_PESTER_INPUT_Debug ? 'Continue' : 'SilentlyContinue' -$VerbosePreference = $env:PSMODULE_INVOKE_PESTER_INPUT_Verbose ? 'Continue' : 'SilentlyContinue' '::group::Exec - Setup prerequisites' Import-Module "$PSScriptRoot/Helpers.psm1"