Skip to content

Commit

Permalink
Merge pull request #4269 from Numpsy/quote
Browse files Browse the repository at this point in the history
Wrap the path in /p:PackageReleaseNotesFile in quotes
  • Loading branch information
forki authored Nov 11, 2024
2 parents 486cb41 + e1cad49 commit 224f6d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ let releaseNotesPath = releaseNotesProp release.Notes

let packageProps = [
sprintf "/p:Version=%s" release.NugetVersion
sprintf "/p:PackageReleaseNotesFile=%s" releaseNotesPath
sprintf "/p:PackageReleaseNotesFile=\"%s\"" releaseNotesPath
]

Target "Build" (fun _ ->
Expand Down

0 comments on commit 224f6d9

Please sign in to comment.