Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aws-vault 6.6.0 #96523

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Formula/aws-vault.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class AwsVault < Formula
desc "Securely store and access AWS credentials in development environments"
homepage "https://github.com/99designs/aws-vault"
url "https://github.com/99designs/aws-vault/archive/v6.5.0.tar.gz"
sha256 "b2127b20a58fd75d92a2af28e77368dd9ab3c576dc73c3d56c3817e496a45515"
url "https://github.com/99designs/aws-vault/archive/v6.6.0.tar.gz"
sha256 "c9973d25047dc2487f413b86f91ccc4272b385fea3132e397c3a921baa01c885"
license "MIT"

livecheck do
Expand Down Expand Up @@ -36,7 +36,9 @@ def install
end

test do
assert_match("aws-vault: error: required argument 'profile' not provided, try --help",
shell_output("#{bin}/aws-vault login 2>&1", 1))
assert_match("aws-vault: error: login: profile some-profile: No master credentials found",
shell_output("#{bin}/aws-vault login some-profile --debug 2>&1", 1))

assert_match version.to_s, shell_output("#{bin}/aws-vault --version 2>&1")
end
end