1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
goreleaser/internal/pipe/brew/testdata/TestRunPipePullRequest.rb.golden
Carlos Alexandro Becker ac398de727
fix(brew): improve handling of single os (#4562)
- refactors brew template into separated files using embed.FS
- moves the macos and linux packages to different template files 
- includes and indent those accordingly to which OSes are supported

closes #4561

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-19 12:41:28 -03:00

19 lines
438 B
Ruby

# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Foo < Formula
desc "Fake desc"
homepage "https://goreleaser.com"
version "1.2.1"
depends_on :macos
url "https://dummyhost/download/v1.2.1/foo_macos"
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
def install
bin.install "foo_macos" => "foo"
man1.install "./man/foo.1.gz"
end
end