diff --git a/Formula/wash.rb b/Formula/wash.rb index a21ee53..c9d981b 100644 --- a/Formula/wash.rb +++ b/Formula/wash.rb @@ -1,54 +1,52 @@ +# typed: false +# frozen_string_literal: true + +# This file was generated by GoReleaser. DO NOT EDIT. class Wash < Formula desc "WAsmcloud SHell - a comprehensive command-line tool for wasmCloud development" - homepage "https://wasmcloud.com" - version "0.23.0" + homepage "https://wasmcloud.com/" + version "0.24.0" license "Apache-2.0" - bottle do - root_url "https://github.com/wasmCloud/homebrew-wasmcloud/releases/download/wash-0.23.0" - sha256 cellar: :any_skip_relocation, monterey: "67c82144bb7fb673d7f4e0a6e686f811122bfd195fd6e6b4eb797a2c35bbc1d6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a2914b468ed3dd845c5fce5677ee0c1a94bdf180a210424462c3342341f276fc" - end - on_macos do - if Hardware::CPU.intel? - url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.23.0/wash-x86_64-apple-darwin" - sha256 "3adb9a837ade2658eb7604e15cb8cc9a6c797e39102fc342dd30083dfdd2a5c8" + if Hardware::CPU.arm? + url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.24.0/wash-aarch64-apple-darwin" + sha256 "d5488e9e7c4e2741823732a59dfb38bf2eea81328e00fd63b813b5e546fa20c9" def install - bin.install "wash-x86_64-apple-darwin" => "wash" + bin.install "wash-aarch64-apple-darwin" => "wash" end end - if Hardware::CPU.arm? - url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.23.0/wash-aarch64-apple-darwin" - sha256 "8b6bb1caa51b9de3ddf338e482da0ecea3cb7327e042fe048dc8077df76e323e" + if Hardware::CPU.intel? + url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.24.0/wash-x86_64-apple-darwin" + sha256 "0a98e15faf7078e9b2dc9014a8e6d94e94ce79f982826c5b4e443082e950d611" def install - bin.install "wash-aarch64-apple-darwin" => "wash" + bin.install "wash-x86_64-apple-darwin" => "wash" end end end on_linux do - if Hardware::CPU.intel? - url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.23.0/wash-x86_64-unknown-linux-musl" - sha256 "3ab9e4fe429b425a9fad08991ca7602a7a2c4cd507280196f79b1b398e54a6b7" + if Hardware::CPU.arm? && Hardware::CPU.is_64_bit? + url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.24.0/wash-aarch64-unknown-linux-musl" + sha256 "ad94f3a2bcf8ff3ea34a6f43b3aff5b5a09e4177de180e84f899486a84fe43b8" def install - bin.install "wash-x86_64-unknown-linux-musl" => "wash" + bin.install "wash-aarch64-unknown-linux-musl" => "wash" end end - if Hardware::CPU.arm? && Hardware::CPU.is_64_bit? - url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.23.0/wash-aarch64-unknown-linux-musl" - sha256 "b21ba5f0697ca2ab53684b871e0809d1e3fa51241a1889c2f1b3e6bcd0fb2dd3" + if Hardware::CPU.intel? + url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.24.0/wash-x86_64-unknown-linux-musl" + sha256 "5cf0e6badefa17ec5fed5bce89d41631ca7423e111a2aa1b944da323a5516e6e" def install - bin.install "wash-aarch64-unknown-linux-musl" => "wash" + bin.install "wash-x86_64-unknown-linux-musl" => "wash" end end end test do - system "#{bin}/wash", "--version" + system "#{bin}/wash", "-V" end end