Remove debug option (#4094)

* Remove debug option

* Remove debug option
This commit is contained in:
Gabi
2026-02-23 01:21:32 +02:00
committed by GitHub
parent 191fe95572
commit d078d67b1d
2 changed files with 4 additions and 18 deletions

View File

@@ -7,16 +7,10 @@
#>
param (
[switch]$Debug,
[string]$Config,
[switch]$Run
)
# Set DebugPreference based on the -Debug switch
if ($Debug) {
$DebugPreference = "Continue"
}
if ($Config) {
$PARAM_CONFIG = $Config
}