Skip to content

Commit

Permalink
Merge pull request #67 from Azure/bug/roleplancount
Browse files Browse the repository at this point in the history
Fixed role plan change count
  • Loading branch information
anwather authored Sep 14, 2022
2 parents 09c25c1 + 1cd3eb5 commit 766c139
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ if (!$noChanges) {

}

$numberOfRoleChanges = ($rolesPlan.removed).Count + ($rolesPlan.removed).Count
$numberOfRoleChanges = ($rolesPlan.added).Count + ($rolesPlan.removed).Count
Write-Information "==================================================================================================="
Write-Information "Writing $($numberOfRoleChanges) Role Assignment changes to plan file $RolesPlanFile"
Write-Information "==================================================================================================="
Expand Down

0 comments on commit 766c139

Please sign in to comment.