Skip to content

Commit a0e635c

Browse files
authored
fix: add quotes to surround file path during azure signing to handle files with spaces (#8606)
1 parent e0b0e35 commit a0e635c

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.changeset/sixty-dogs-deliver.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
fix: add quotes to surround file path during azure signing to handle files with spaces

packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class WindowsSignAzureManager {
8686
Endpoint: endpoint,
8787
CertificateProfileName: certificateProfileName,
8888
CodeSigningAccountName: codeSigningAccountName,
89-
Files: options.path,
89+
Files: `"${options.path}"`,
9090
}
9191
const paramsString = Object.entries(params)
9292
.reduce((res, [field, value]) => {

0 commit comments

Comments
 (0)