mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Fix variable reference
This commit is contained in:
committed by
Matt Martz
parent
af0bcb354d
commit
04d94ffb8f
@@ -73,8 +73,8 @@ ForEach ($item in $result.FeatureResult) {
|
||||
}
|
||||
}
|
||||
Set-Attr $result.win_feature "feature_result" $feature_results
|
||||
Set-Attr $result.win_feature "success" result.Success
|
||||
Set-Attr $result.win_feature "exitcode" result.ExitCode.ToString()
|
||||
Set-Attr $result.win_feature "restart_needed" result.RestartNeeded.ToString()
|
||||
Set-Attr $result.win_feature "success" $result.Success
|
||||
Set-Attr $result.win_feature "exitcode" $result.ExitCode.ToString()
|
||||
Set-Attr $result.win_feature "restart_needed" $result.RestartNeeded.ToString()
|
||||
|
||||
Exit-Json $result;
|
||||
|
||||
Reference in New Issue
Block a user