From 108bae3f925c9d533dea3a857e5425f2b6222bef Mon Sep 17 00:00:00 2001 From: Michael Tibben Date: Wed, 21 Sep 2016 17:36:21 +1000 Subject: [PATCH] Update codesign to use updated cert --- Makefile | 5 ++++- README.md | 8 +++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 472f09092..a0c0331b7 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ GOVERSION=$(shell go version) GOBIN=$(shell go env GOBIN) VERSION=$(shell git describe --tags --candidates=1 --dirty) FLAGS=-X main.Version=$(VERSION) -s -w -CERT="3rd Party Mac Developer Application: 99designs Inc (NRM9HVJ62Z)" +CERT="Developer ID Application: 99designs Inc (NRM9HVJ62Z)" SRC=$(shell find . -name '*.go') build: @@ -26,3 +26,6 @@ $(BIN)-windows-386: $(SRC) release: $(BIN)-linux-amd64 $(BIN)-darwin-amd64 $(BIN)-windows-386 codesign -s $(CERT) $(BIN)-darwin-amd64 + +clean: + rm -rf $(BIN)-linux-amd64 $(BIN)-darwin-amd64 $(BIN)-windows-386 diff --git a/README.md b/README.md index cb98026f1..e3b1520d7 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,14 @@ Download the [latest release](https://github.com/99designs/aws-vault/releases). On macOS, you may instead use [homebrew cask](https://github.com/caskroom/homebrew-cask) to install: - brew cask install aws-vault + $ brew cask install aws-vault The macOS release is code-signed, and you can verify this with `codesign`: - codesign -dvvv $(which aws-vault) | grep NRM9HVJ62Z - Authority=3rd Party Mac Developer Application: 99designs Inc (NRM9HVJ62Z) + $ codesign -dvv $(which aws-vault) 2>&1 | grep Authority + Authority=Developer ID Application: 99designs Inc (NRM9HVJ62Z) + Authority=Developer ID Certification Authority + Authority=Apple Root CA ## Usage