Skip to content

Commit

Permalink
storj-uplink 1.30.2 (new formula)
Browse files Browse the repository at this point in the history
Followup to #76272.

Closes #78301.

Signed-off-by: Nanda H Krishna <me@nandahkrishna.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
  • Loading branch information
gromgit authored and BrewTestBot committed May 29, 2021
1 parent a5adfdb commit b861c15
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Formula/storj-uplink.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
class StorjUplink < Formula
desc "Uplink CLI for the Storj network"
homepage "https://storj.io"
url "https://github.com/storj/storj/archive/v1.30.2.tar.gz"
sha256 "e26d9bbea734245bf63171224b30661c864bafc699cf93ffb268bac25cd74ab5"
license "AGPL-3.0-only"

depends_on "go" => :build

def install
system "go", "build", *std_go_args, "-o", bin/"uplink", "./cmd/uplink"
end

test do
assert_match "invalid access grant format", shell_output("#{bin}/uplink ls 2>&1", 1)
end
end

0 comments on commit b861c15

Please sign in to comment.