Skip to content

Commit

Permalink
Merge branch 'release/0.8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nbari committed Dec 20, 2016
2 parents 3c8fb06 + 5960428 commit 4549e25
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

GO ?= go
BIN_NAME=ssh-vault
GO_XC = ${GOPATH}/bin/goxc -os="freebsd netbsd openbsd darwin linux windows"
GO_XC = ${GOPATH}/bin/goxc -os="freebsd netbsd openbsd darwin linux windows" -bc="!386"
GOXC_FILE = .goxc.json
GOXC_FILE_LOCAL = .goxc.local.json
VERSION=$(shell git describe --tags --always)
Expand All @@ -13,13 +13,13 @@ get:
${GO} get

build: get
${GO} get -u github.com/ssh-vault/ssh2pem
${GO} get -u golang.org/x/crypto/ssh/terminal
${GO} get -u github.com/keybase/go-keychain
${GO} get -u github.com/kr/pty
${GO} get -u github.com/ssh-vault/crypto
${GO} get -u github.com/ssh-vault/crypto/aead
${GO} get -u github.com/ssh-vault/crypto/oaep
${GO} get -u github.com/keybase/go-keychain
${GO} get -u github.com/kr/pty
${GO} get -u github.com/ssh-vault/ssh2pem
${GO} get -u golang.org/x/crypto/ssh/terminal
${GO} build -ldflags "-X main.version=${VERSION}" -o ${BIN_NAME} cmd/ssh-vault/main.go;

clean:
Expand Down
1 change: 1 addition & 0 deletions get_password_darwin.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build darwin
// +build amd64

// Apple's OpenSSH fork uses Keychain for private key passphrases.
// They're indexed by the absolute file path to the private key,
Expand Down
1 change: 1 addition & 0 deletions get_password_darwin_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build darwin
// +build amd64

package sshvault

Expand Down

0 comments on commit 4549e25

Please sign in to comment.