Skip to content

Commit e1cad49

Browse files
committed
Wrap the path in /p:PackageReleaseNotesFile in quotes
1 parent d6fee24 commit e1cad49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ let releaseNotesPath = releaseNotesProp release.Notes
155155

156156
let packageProps = [
157157
sprintf "/p:Version=%s" release.NugetVersion
158-
sprintf "/p:PackageReleaseNotesFile=%s" releaseNotesPath
158+
sprintf "/p:PackageReleaseNotesFile=\"%s\"" releaseNotesPath
159159
]
160160

161161
Target "Build" (fun _ ->

0 commit comments

Comments
 (0)