Skip to content

Commit

Permalink
Compile Winutil
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTitusTech authored and github-actions[bot] committed Jan 30, 2024
1 parent cf2d934 commit 4a62150
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions winutil.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2414,7 +2414,7 @@ function Invoke-WPFFeatureInstall {

$Features = (Get-WinUtilCheckBoxes)["WPFFeatures"]

Invoke-WPFRunspace -ArgumentList $Features,$DebugPreference -ScriptBlock {
Invoke-WPFRunspace -ArgumentList $Features -DebugPreference $DebugPreference -ScriptBlock {
param($Features, $DebugPreference)

$sync.ProcessRunning = $true
Expand Down Expand Up @@ -2823,7 +2823,7 @@ function Invoke-WPFGetInstalled {
return
}

Invoke-WPFRunspace -ArgumentList $checkbox,$DebugPreference -ScriptBlock {
Invoke-WPFRunspace -ArgumentList $checkbox -DebugPreference $DebugPreference -ScriptBlock {
param($checkbox, $DebugPreference)

$sync.ProcessRunning = $true
Expand Down Expand Up @@ -3091,7 +3091,7 @@ function Invoke-WPFInstall {
return
}

Invoke-WPFRunspace -ArgumentList $WingetInstall,$DebugPreference -ScriptBlock {
Invoke-WPFRunspace -ArgumentList $WingetInstall -DebugPreference $DebugPreference -ScriptBlock {
param($WingetInstall, $DebugPreference)

try{
Expand Down Expand Up @@ -3955,7 +3955,7 @@ function Invoke-WPFundoall {
return
}

Invoke-WPFRunspace -ArgumentList $Tweaks,$DebugPreference -ScriptBlock {
Invoke-WPFRunspace -ArgumentList $Tweaks -DebugPreference $DebugPreference -ScriptBlock {
param($Tweaks, $DebugPreference)

$sync.ProcessRunning = $true
Expand Down Expand Up @@ -4160,7 +4160,7 @@ function Invoke-WPFUnInstall {

if($confirm -eq "No"){return}

Invoke-WPFRunspace -ArgumentList $WingetInstall,$DebugPreference -ScriptBlock {
Invoke-WPFRunspace -ArgumentList $WingetInstall -DebugPreference $DebugPreference -ScriptBlock {
param($WingetInstall, $DebugPreference)

try{
Expand Down

0 comments on commit 4a62150

Please sign in to comment.