File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11cask "review-goose" do
22 version "0.9.4"
3- sha256 :no_check # Built from source, no pre-compiled binary
3+ sha256 :no_check # Built from source, no pre-compiled binary
44
55 url "https://github.com/codeGROOVE-dev/goose.git" ,
66 tag : "v#{ version } " ,
1212 depends_on formula : "go"
1313 depends_on formula : "gh"
1414
15+ app "out/Review Goose.app"
16+
1517 preflight do
1618 system_command "make" ,
17- args : [ "app-bundle" ] ,
19+ args : [ "app-bundle" ] ,
1820 chdir : staged_path ,
19- env : {
20- "PATH" => "#{ HOMEBREW_PREFIX } /bin:#{ ENV [ "PATH" ] } " ,
21+ env : {
22+ "PATH" => "#{ HOMEBREW_PREFIX } /bin:#{ ENV . fetch ( "PATH" , nil ) } " ,
2123 }
2224 end
2325
24- app "out/Review Goose.app"
25-
2626 zap trash : [
27- "~/Library/Preferences/dev.codegroove.goose.plist" ,
2827 "~/Library/Application Support/goose" ,
28+ "~/Library/Preferences/dev.codegroove.goose.plist" ,
2929 ]
3030end
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ class ReviewGoose < Formula
88 license "GPL-3.0"
99 head "https://github.com/codeGROOVE-dev/goose.git" , branch : "main"
1010
11+ depends_on "go" => :build
12+ depends_on "gh"
13+
1114 # On macOS, use the cask instead (brew install --cask review-goose)
1215 # This formula is primarily for Linux support
1316 depends_on :linux
1417
15- depends_on "go" => :build
16- depends_on "gh"
17-
1818 def install
1919 system "make" , "build"
2020 bin . install "out/review-goose"
You can’t perform that action at this time.
0 commit comments