Skip to content

Commit 59b341b

Browse files
Escape single quotes in repository description for module manifest
1 parent a2b5f03 commit 59b341b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/bootstrap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
CompanyName = "${{ github.repository_owner }}"
114114
Copyright = "(c) ${{ github.repository_owner }}. All rights reserved."
115115
RootModule = "${{ github.event.repository.name }}.psm1"
116-
Description = $env:REPO_DESCRIPTION
116+
Description = ($env:REPO_DESCRIPTION -replace "'", "''")
117117
ProjectUri = "https://github.com/${{ github.repository }}"
118118
LicenseUri = "https://github.com/${{ github.repository }}/blob/main/LICENSE"
119119
ReleaseNotes = "https://github.com/${{ github.repository }}/releases"

0 commit comments

Comments
 (0)