Skip to content

Commit

Permalink
Fixed bug in manifest generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Nov 27, 2023
1 parent 0a3e7c7 commit 3b672d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fixed type in module manifest generation that resulted in an invalid manifest

## [0.1.8] - 2023-11-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion source/Private/Initialize-Module.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function Initialize-Module
[void]$moduleManifestString.AppendLine(' # Modules that must be imported into the global environment prior to importing this module')
[void]$moduleManifestString.AppendLine(' RequiredModules = @(')
[void]$moduleManifestString.AppendLine(" @{ModuleName='DscBuildHelpers'; ModuleVersion ='0.2.1'; GUID='23ccd4bf-0a52-4077-986f-c153893e5a6a'}")
[void]$moduleManifestString.AppendLine(" @{ModuleName='Microsoft365DSC'; RequiredVersion='$m365dscVersion'; GUID='39f599a6-d212-4480-83b3-a8ea2124d8cf'})")
[void]$moduleManifestString.AppendLine(" @{ModuleName='Microsoft365DSC'; RequiredVersion='$m365dscVersion'; GUID='39f599a6-d212-4480-83b3-a8ea2124d8cf'}")
[void]$moduleManifestString.AppendLine(' )')
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.')
Expand Down

0 comments on commit 3b672d1

Please sign in to comment.