Skip to content

Commit f58fea8

Browse files
committed
Fix wrong path in sign-release.go
Commit b054cfc renamed a file in the npm package, but our signing script referenced the file by its old name. Use the new name in the signing script.
1 parent 9effb06 commit f58fea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/sign-release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ var filesToTransform map[string]map[string]FileTransformType = map[string]map[st
165165
"bin/quick-lint-js.exe": MicrosoftOsslsigncode,
166166
},
167167
"npm/quick-lint-js-0.7.1.tgz": map[string]FileTransformType{
168-
"package/darwin-aarch64/bin/quick-lint-js": AppleCodesign,
168+
"package/darwin-arm64/bin/quick-lint-js": AppleCodesign,
169169
"package/darwin-x64/bin/quick-lint-js": AppleCodesign,
170170
"package/linux-arm/bin/quick-lint-js": GPGSign,
171171
"package/linux-arm64/bin/quick-lint-js": GPGSign,

0 commit comments

Comments
 (0)