From ded021e1d3040f1bb6bb78d425652c6f675f86fd Mon Sep 17 00:00:00 2001 From: Ron Gebauer Date: Wed, 27 Oct 2021 12:10:04 +0200 Subject: [PATCH] Remove bottle and fix brew style I ran `brew style --fix` for the formula and also removed bottle as it is no longer supported by the latest Brew installation. This will fix #2 . --- git-chglog.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/git-chglog.rb b/git-chglog.rb index bb0073b..65d9cce 100644 --- a/git-chglog.rb +++ b/git-chglog.rb @@ -3,10 +3,9 @@ # This file was generated by GoReleaser. DO NOT EDIT. class GitChglog < Formula - desc "CHANGELOG generator implemented in Go (Golang)." + desc "CHANGELOG generator implemented in Go (Golang)" homepage "https://godoc.org/github.com/git-chglog/git-chglog" version "0.15.0" - bottle :unneeded on_macos do if Hardware::CPU.intel? @@ -39,6 +38,6 @@ def install end test do - system "#{bin}/git-chglog --help" + system "#{bin}/git-chglog", "--help" end end