Skip to content

Commit

Permalink
fix circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kania committed Apr 23, 2020
1 parent 8271d7b commit 74e5a68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ workflows:
- release:
filters:
branches:
only:
- mk-available-backends
ignore: /^.*/
tags:
only: /^v.*/
7 changes: 2 additions & 5 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -382,11 +382,8 @@ func (u *User) RemoveVaultSession() error {

func getKeyring(keychainName string) (*keyring.Keyring, error) {
ring, err := keyring.Open(keyring.Config{
ServiceName: "aws-vault",
AllowedBackends: []keyring.BackendType{
keyring.KeychainBackend,
keyring.FileBackend,
},
ServiceName: "aws-vault",
AllowedBackends: keyring.AvailableBackends(),
KeychainName: keychainName,
KeychainTrustApplication: true,
})
Expand Down

0 comments on commit 74e5a68

Please sign in to comment.