We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e538c3c + e6fd4a1 commit 5d8d99dCopy full SHA for 5d8d99d
1 file changed
Formula/try.rb
@@ -3,12 +3,17 @@ class Try < Formula
3
homepage "https://github.com/tobi/try"
4
url "https://github.com/tobi/try/archive/refs/tags/v1.0.0.tar.gz"
5
sha256 "267f2b63561de396a8938c6f41e68e8cecc635d05c582a1f866c0bbf37676af2"
6
- version "1.0.0"
+
7
+ head "https://github.com/tobi/try.git", branch: "main"
8
9
depends_on "ruby"
10
11
def install
12
bin.install "try.rb" => "try"
13
+ if build.head?
14
+ (bin/"lib").install "lib/tui.rb"
15
+ (bin/"lib").install "lib/fuzzy.rb"
16
+ end
17
end
18
19
def caveats
@@ -28,4 +33,4 @@ def caveats
28
33
test do
29
34
system "#{bin}/try", "--help"
30
35
31
-end
36
+end
0 commit comments