Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0ebb4df

Browse filesBrowse files
evanlucasFishrock123
authored andcommitted
build: codesign tarball binary on macOS
Previously, we were signing the binary that was released in the .pkg, but not the binary released in the tarball. PR-URL: #14179 Fixes: #11936 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 5ab4471 commit 0ebb4df
Copy full SHA for 0ebb4df

File tree

Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed
Open diff view settings
Collapse file

‎Makefile‎

Copy file name to clipboardExpand all lines: Makefile
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,9 @@ $(BINARYTAR): release-only
808808
cp README.md $(BINARYNAME)
809809
cp LICENSE $(BINARYNAME)
810810
cp CHANGELOG.md $(BINARYNAME)
811+
ifeq ($(OSTYPE),darwin)
812+
SIGN="$(CODESIGN_CERT)" PKGDIR="$(BINARYNAME)" bash tools/osx-codesign.sh
813+
endif
811814
tar -cf $(BINARYNAME).tar $(BINARYNAME)
812815
$(RM) -r $(BINARYNAME)
813816
gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.