Skip to content

Commit

Permalink
Brew formula update for scaffold version scaffold-v3.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
goreleaserbot committed Dec 2, 2024
1 parent e04917b commit 4205a5d
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class ScaffoldAT347 < Formula
desc "Scaffold CloudQuery source and destination plugins"
homepage "https://cloudquery.io"
version "3.4.7"

on_macos do
on_intel do
url "https://github.com/cloudquery/cloudquery/releases/download/scaffold-v3.4.7/cq-scaffold_darwin_amd64.zip"
sha256 "dfd42d667e865c14afb52471737d177a483d3061edb16c0a3a8b5fd6b9937773"

def install
bin.install "cq-scaffold"
end
end
on_arm do
url "https://github.com/cloudquery/cloudquery/releases/download/scaffold-v3.4.7/cq-scaffold_darwin_arm64.zip"
sha256 "03f54f5bbfc1da3cafb6a15fe6505d7c9f1773707c4efa3be8611befce22d297"

def install
bin.install "cq-scaffold"
end
end
end

on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/cloudquery/cloudquery/releases/download/scaffold-v3.4.7/cq-scaffold_linux_amd64.zip"
sha256 "188f24ef561d054dc46860e28a13ef7e88f6ec535662ce4deceac89c90cd8615"

def install
bin.install "cq-scaffold"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/cloudquery/cloudquery/releases/download/scaffold-v3.4.7/cq-scaffold_linux_arm64.zip"
sha256 "86a8ff8c943bf55489f1a7d080a478cad22d3f5fa156305b2c723b53338e0e33"

def install
bin.install "cq-scaffold"
end
end
end
end
end

0 comments on commit 4205a5d

Please sign in to comment.