mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
b28b203af4
closes #2270 Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
22 lines
425 B
Plaintext
22 lines
425 B
Plaintext
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
class FooIsBar < Formula
|
|
desc ""
|
|
homepage ""
|
|
version "1.0.1"
|
|
bottle :unneeded
|
|
depends_on :macos
|
|
|
|
on_macos do
|
|
if Hardware::CPU.intel?
|
|
url "https://dummyhost/download/v1.0.1/bin.tar.gz"
|
|
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
end
|
|
end
|
|
|
|
def install
|
|
end
|
|
end
|