We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc957ca commit d0c0518Copy full SHA for d0c0518
coder-cli-nightly.rb
@@ -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
18
+ test do
19
+ system "#{bin}/coder", "--version"
20
21
+end
0 commit comments