scalingo 1.22.1

Closes #93343.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Branch Vincent 2022-01-18 10:26:07 -05:00 committed by BrewTestBot
parent 3c954f3ffd
commit c8a046c102
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 4 additions and 5 deletions

View File

@ -1,8 +1,8 @@
class Scalingo < Formula
desc "CLI for working with Scalingo's PaaS"
homepage "https://doc.scalingo.com/cli"
url "https://github.com/Scalingo/cli/archive/refs/tags/1.22.0.tar.gz"
sha256 "f08236d73195e9107f1a2d4aaf0d01bd40e852e8f032bc5d42227677f65ee4ec"
url "https://github.com/Scalingo/cli/archive/1.22.1.tar.gz"
sha256 "cef2766e41a21eadf8b6a00e467bfb2c9234373d5cc52a272100cefed99a2380"
license "BSD-4-Clause"
bottle do
@ -17,7 +17,7 @@ class Scalingo < Formula
depends_on "go" => :build
def install
system "go", "build", *std_go_args, "scalingo/main.go"
system "go", "build", *std_go_args(ldflags: "-s -w"), "scalingo/main.go"
end
test do
@ -28,7 +28,6 @@ class Scalingo < Formula
| region | |
+-------------------+-------+
END
config_output = shell_output("#{bin}/scalingo config")
assert_equal config_output, expected
assert_equal expected, shell_output("#{bin}/scalingo config")
end
end