Skip to content

Commit fc335a1

Browse files
🩹[Patch] Clean up logging for manifest update (#17)
- Remove unnecessary logging during update manifest.
1 parent 269e8c9 commit fc335a1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

scripts/helpers/Publish-PSModule.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,17 +301,13 @@ function Publish-PSModule {
301301
Write-Verbose 'Bump module version -> module metadata: Update-ModuleMetadata'
302302
$manifestNewVersion = "$($newVersion.Major).$($newVersion.Minor).$($newVersion.Patch)"
303303
Set-ModuleManifest -Path $manifestFilePath -ModuleVersion $manifestNewVersion -Verbose:$false
304-
Show-FileContent -Path $manifestFilePath
305304
if ($createPrerelease) {
306305
Write-Verbose "Prerelease is: [$($newVersion.Prerelease)]"
307306
Set-ModuleManifest -Path $manifestFilePath -Prerelease $($newVersion.Prerelease) -Verbose:$false
308307
}
309-
Stop-LogGroup
310308

311-
Start-LogGroup 'Format manifest file - Result'
312309
Show-FileContent -Path $manifestFilePath
313310
Stop-LogGroup
314-
315311
#endregion Update module manifest
316312

317313
#region Create releases

0 commit comments

Comments
 (0)