diff --git a/Formula/argocd-autopilot.rb b/Formula/argocd-autopilot.rb index 46822463878c9..c4d143b20a842 100644 --- a/Formula/argocd-autopilot.rb +++ b/Formula/argocd-autopilot.rb @@ -2,8 +2,8 @@ class ArgocdAutopilot < Formula desc "Opinionated way of installing Argo CD and managing GitOps repositories" homepage "https://argoproj.io" url "https://github.com/argoproj-labs/argocd-autopilot.git", - tag: "v0.2.7", - revision: "9b4e705e86c3334ceb42bffe3b7fd97d67e230ad" + tag: "v0.2.8", + revision: "506193f5a494a7613846205d34acd2e545a7d720" license "Apache-2.0" bottle do @@ -22,7 +22,8 @@ def install test do assert_match version.to_s, shell_output("#{bin}/argocd-autopilot version") - assert_match "authentication failed", - shell_output("#{bin}/argocd-autopilot repo create -o foo -n bar -t dummy 2>&1", 1) + + assert_match "required flag(s) \\\"git-token\\\" not set\"", + shell_output("#{bin}/argocd-autopilot repo bootstrap --repo https://github.com/example/repo 2>&1", 1) end end