From 3580de881f20009c70f6b4b185e794dbad54668f Mon Sep 17 00:00:00 2001 From: Trent Blackburn Date: Wed, 20 May 2026 23:35:24 -0400 Subject: [PATCH] ci(release): include manifest path in the ReleaseNotes-write failure warning Brings PlexAutomationToolkit in line with the template and the other modules: the catch warning now names the built manifest (like the missing-path warning) so logs identify which file failed to update. No behavior change. Co-Authored-By: Claude Opus 4.7 (1M context) --- build.psake.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.psake.ps1 b/build.psake.ps1 index 5c56065..b1f8a94 100644 --- a/build.psake.ps1 +++ b/build.psake.ps1 @@ -100,7 +100,7 @@ Task -Name 'UpdateReleaseNotes' -Depends 'Build' -Description 'Set built manifes catch { # Keep publishing unblocked: a failure here just leaves the manifest's existing # ReleaseNotes in place rather than aborting the release. - Write-Warning "Failed to set ReleaseNotes on the built manifest ($($_.Exception.Message)); leaving it unchanged." + Write-Warning "Failed to set ReleaseNotes on the built manifest '$builtManifest' ($($_.Exception.Message)); leaving it unchanged." } }