Skip to content

Commit

Permalink
fixed checklist convertto hashtable function
Browse files Browse the repository at this point in the history
  • Loading branch information
bcwilhite committed Jan 22, 2021
1 parent 90fbf36 commit fb9914a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Update PowerSTIG to Parse/Apply MS Office 365 ProPlus Ver 2, Rel 1: [#811](https://github.com/microsoft/PowerStig/issues/811)
* Update PowerSTIG to Add Checklist Accountability: [#808](https://github.com/microsoft/PowerStig/issues/808)
* Update PowerSTIG to move O365 Pro Plus log entries into Exclusion Rule list: [#815](https://github.com/microsoft/PowerStig/issues/815)
* Fixed: ConvertTo-ManualCheckListHashTable function call is missing mandatory argument: [#823](https://github.com/microsoft/PowerStig/issues/823)

## [4.7.0] - 2020-12-17

Expand Down
2 changes: 1 addition & 1 deletion source/Module/STIG/Functions.Checklist.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function New-StigCheckList

if ($PSBoundParameters.ContainsKey('ManualChecklistEntriesFile'))
{
$manualCheckData = ConvertTo-ManualCheckListHashTable -Path $ManualChecklistEntriesFile
$manualCheckData = ConvertTo-ManualCheckListHashTable -Path $ManualChecklistEntriesFile -XccdfPath $XccdfPath
}

# Values for some of these fields can be read from the .mof file or the DSC results file
Expand Down

0 comments on commit fb9914a

Please sign in to comment.