mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
ba9b75a095
* fix(brew): Remove deprecated `bottle :unneeded` Fixes this warning from Homebrew: `Warning: Calling bottle :unneeded is deprecated! There is no replacement.` * fix(brew): fix regression that added newlines to formula
20 lines
403 B
Plaintext
20 lines
403 B
Plaintext
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
class Foo < Formula
|
|
desc ""
|
|
homepage ""
|
|
version "1.2.1"
|
|
depends_on :macos
|
|
|
|
on_macos do
|
|
url "https://dummyhost/download/v1.2.1/foo_macos"
|
|
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
|
|
def install
|
|
bin.install "foo_macos" => "foo"
|
|
end
|
|
end
|
|
end
|