caught out by syntax

reviewable/pr18780/r1
Peter Mounce 10 years ago
parent 6f1d9fbbcc
commit 4fef779f09

@ -50,8 +50,8 @@ else
try try
{ {
$tasks = Get-ScheduledTask -TaskPath $name $tasks = Get-ScheduledTask -TaskPath $name
$tasks_needing_changing |? { $_.State -ne $state } $tasks_needing_changing = $tasks |? { $_.State -ne $state }
if ($tasks_needing_changing -eq $null) if (-not($tasks_needing_changing -eq $null))
{ {
if ($state -eq 'Disabled') if ($state -eq 'Disabled')
{ {
@ -69,6 +69,7 @@ try
Set-Attr $result "tasks_changed" @() Set-Attr $result "tasks_changed" @()
$result.changed = $false $result.changed = $false
} }
Exit-Json $result; Exit-Json $result;
} }
catch catch

Loading…
Cancel
Save