Skip to content

Commit d0c0518

Browse files
committed
feat: add coder-cli nightly release
1 parent fc957ca commit d0c0518

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

coder-cli-nightly.rb

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
class CoderCli < Formula
2+
desc "Command-line tool for the Coder remote development platform, nightly release channel"
3+
homepage "https://github.com/cdr/coder-cli"
4+
version "1.16.0-rc.0"
5+
bottle :unneeded
6+
7+
if OS.mac?
8+
url "https://github.com/cdr/coder-cli/releases/download/v1.16.0-rc.0/coder-cli-darwin-amd64.zip"
9+
sha256 "7552b45f956c2a027c58beb0867d6df32d75291a0a5b6ad0c6bc9957306da989"
10+
else
11+
url "https://github.com/cdr/coder-cli/releases/download/v1.16.0-rc.0/coder-cli-linux-amd64.tar.gz"
12+
sha256 "038ebbb4e338c2b308857691a1e6119a2419b68abfa9f95f9787db886703e0bc"
13+
end
14+
15+
def install
16+
bin.install "coder"
17+
end
18+
test do
19+
system "#{bin}/coder", "--version"
20+
end
21+
end

0 commit comments

Comments
 (0)