Skip to content

Commit

Permalink
remove $automation entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
MyDrift-user committed Aug 25, 2024
1 parent a4d1d0f commit 494ad3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions functions/public/Invoke-WPFFeatureInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ function Invoke-WPFFeatureInstall {

if ($FeatureConfig) {
$Features = $FeatureConfig
$automation = $true
} else {
$Features = (Get-WinUtilCheckBoxes)["WPFFeature"]
$automation = $false
}

Invoke-WPFRunspace -ArgumentList $Features, $automation -DebugPreference $DebugPreference -ScriptBlock {
param($Features, $automation, $DebugPreference)
Invoke-WPFRunspace -ArgumentList $Features -DebugPreference $DebugPreference -ScriptBlock {
param($Features, $DebugPreference)
$sync.ProcessRunning = $true
if ($Features.count -eq 1) {
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Indeterminate" -value 0.01 -overlay "logo" })
Expand Down
6 changes: 2 additions & 4 deletions functions/public/Invoke-WPFInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ function Invoke-WPFInstall {

if ($InstallConfig) {
$PackagesToInstall = $InstallConfig
$automation = $true
} else {
$PackagesToInstall = (Get-WinUtilCheckBoxes)["Install"]
$automation = $false
}

if ($PackagesToInstall.Count -eq 0) {
Expand All @@ -31,8 +29,8 @@ function Invoke-WPFInstall {
}


Invoke-WPFRunspace -ArgumentList $PackagesToInstall, $automation -DebugPreference $DebugPreference -ScriptBlock {
param($PackagesToInstall, $automation, $DebugPreference)
Invoke-WPFRunspace -ArgumentList $PackagesToInstall -DebugPreference $DebugPreference -ScriptBlock {
param($PackagesToInstall, $DebugPreference)
if ($PackagesToInstall.count -eq 1) {
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Indeterminate" -value 0.01 -overlay "logo" })
} else {
Expand Down
6 changes: 2 additions & 4 deletions functions/public/Invoke-WPFtweaksbutton.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ function Invoke-WPFtweaksbutton {

if ($TweaksConfig) {
$Tweaks = $TweaksConfig
$automation = $true
} else {
$Tweaks = (Get-WinUtilCheckBoxes)["WPFTweaks"]
$automation = $false
}

Set-WinUtilDNS -DNSProvider $sync["WPFchangedns"].text
Expand All @@ -34,8 +32,8 @@ function Invoke-WPFtweaksbutton {

Write-Debug "Number of tweaks to process: $($Tweaks.Count)"

Invoke-WPFRunspace -ArgumentList $Tweaks, $automation -DebugPreference $DebugPreference -ScriptBlock {
param($Tweaks, $automation, $DebugPreference)
Invoke-WPFRunspace -ArgumentList $Tweaks -DebugPreference $DebugPreference -ScriptBlock {
param($Tweaks, $DebugPreference)
Write-Debug "Inside Number of tweaks to process: $($Tweaks.Count)"

$sync.ProcessRunning = $true
Expand Down

0 comments on commit 494ad3c

Please sign in to comment.