mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-24 04:16:27 +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
395 B
Plaintext
20 lines
395 B
Plaintext
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
class Unibin < Formula
|
|
desc ""
|
|
homepage ""
|
|
version "1.0.1"
|
|
depends_on :macos
|
|
|
|
on_macos do
|
|
url "https://dummyhost/download/v1.0.1/bin.tar.gz"
|
|
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
|
|
def install
|
|
bin.install "unibin"
|
|
end
|
|
end
|
|
end
|