mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 04:41:26 -07:00
Fix variable reference
This commit is contained in:
parent
af0bcb354d
commit
04d94ffb8f
1 changed files with 3 additions and 3 deletions
|
@ -73,8 +73,8 @@ ForEach ($item in $result.FeatureResult) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Set-Attr $result.win_feature "feature_result" $feature_results
|
Set-Attr $result.win_feature "feature_result" $feature_results
|
||||||
Set-Attr $result.win_feature "success" result.Success
|
Set-Attr $result.win_feature "success" $result.Success
|
||||||
Set-Attr $result.win_feature "exitcode" result.ExitCode.ToString()
|
Set-Attr $result.win_feature "exitcode" $result.ExitCode.ToString()
|
||||||
Set-Attr $result.win_feature "restart_needed" result.RestartNeeded.ToString()
|
Set-Attr $result.win_feature "restart_needed" $result.RestartNeeded.ToString()
|
||||||
|
|
||||||
Exit-Json $result;
|
Exit-Json $result;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue