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 c128593 commit 2aa4c4fCopy full SHA for 2aa4c4f
Source/Private/InitializeBuild.ps1
@@ -26,7 +26,11 @@ function InitializeBuild {
26
# GetBuildInfo reads the parameter values from the Build-Module command and combines them with the Manifest values
27
$BuildManifest = ResolveBuildManifest $SourcePath
28
29
- Write-Debug "BuildCommand: $($BuildCommandInvocation.MyCommand | Out-String)"
+ Write-Debug "BuildCommand: $(
30
+ @(
31
+ @($BuildCommandInvocation.MyCommand.Name)
32
+ @($BuildCommandInvocation.BoundParameters.GetEnumerator().ForEach{ "-{0} '{1}'" -f $_.Key, $_.Value })
33
+ ) -join ' ')"
34
$BuildInfo = GetBuildInfo -BuildManifest $BuildManifest -BuildCommandInvocation $BuildCommandInvocation
35
36
# Finally, add all the information in the module manifest to the return object
0 commit comments