We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28c47d commit cb936ceCopy full SHA for cb936ce
Source/Private/InitializeBuild.ps1
@@ -46,9 +46,10 @@ function InitializeBuild {
46
throw "Unresolvable problems in module manifest"
47
}
48
49
+ # Workaround the fact that Get-Module returns the DefaultCommandPrefix as Prefix
50
+ $ModuleInfo = Update-Object -InputObject $ModuleInfo -UpdateObject @{ DefaultCommandPrefix = $ModuleInfo.Prefix; Prefix = "" }
51
# Update the module manifest with our build configuration
52
$ModuleInfo = Update-Object -InputObject $ModuleInfo -UpdateObject $BuildInfo
- $ModuleInfo = Update-Object -InputObject $ModuleInfo -UpdateObject @{ DefaultCommandPrefix = $ModuleInfo.Prefix; Prefix = "" }
53
54
$ModuleInfo
55
0 commit comments