Skip to content

Commit 9fb2895

Browse files
authored
fix: malformed Files param when using Azure Trusted Signing (electron-userland#8987)
1 parent 04beb67 commit 9fb2895

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
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: malformed `Files` param when using Azure Trusted Signing

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export class WindowsSignAzureManager implements SignManager {
125125
TimestampRfc3161: timestampRfc3161 || "http://timestamp.acs.microsoft.com",
126126
TimestampDigest: timestampDigest || "SHA256",
127127
FileDigest: fileDigest || "SHA256",
128-
Files: `"${options.path}"`,
128+
Files: options.path,
129129
}
130130
const paramsString = Object.entries(params)
131131
.filter(([_, value]) => value != null)

0 commit comments

Comments
 (0)