Skip to content

Commit

Permalink
Corrected issue with missing parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Apr 16, 2024
1 parent 4d70838 commit fff1086
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- New Test-IfModulesInBlobStorage that tests if a package exists in the Azure Blob
Storage for the specified Microsoft365DSC version

### Fixed

- Fixed issue in Convert-M365DSCExportToPowerShellDataFile where parameter in ConvertTo-Expression
has been removed

## [0.2.8] - 2024-04-05

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ function Convert-M365DSCExportToPowerShellDataFile
# Check if data is available
if ($Obj_Result.NonNodeData.$Workload)
{
$Obj_Result | ConvertTo-Expression -Depth 20 -Expand 20 -IndentSize 4 | Out-File $Path_CompositeConfig -Force -Confirm:$false -Encoding ascii
$Obj_Result | ConvertTo-Expression -Depth 20 -Expand 20 | Out-File $Path_CompositeConfig -Force -Confirm:$false -Encoding ascii
'Result Composite config created: {0}' -f $Path_CompositeConfig | Write-Log
}
else
Expand Down

0 comments on commit fff1086

Please sign in to comment.