Skip to content

Commit

Permalink
Brew formula update for stratus-red-team version v0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
goreleaserbot committed Jan 19, 2022
1 parent 6d29833 commit f290f6c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Formula/stratus-red-team.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class StratusRedTeam < Formula
desc ""
homepage "https://stratus-red-team.cloud"
version "0.0.10"
license "Apache-2.0"
depends_on :macos

on_macos do
if Hardware::CPU.arm?
url "https://github.com/DataDog/stratus-red-team/releases/download/v0.0.10/stratus-red-team_0.0.10_Darwin_arm64.tar.gz"
sha256 "405c62ec39498cf32384660cdc19ede74b2af9c789629397d7411c6232b4f180"

def install
bin.install "stratus"
end
end
if Hardware::CPU.intel?
url "https://github.com/DataDog/stratus-red-team/releases/download/v0.0.10/stratus-red-team_0.0.10_Darwin_x86_64.tar.gz"
sha256 "f5d8ce11aa51e588a37a25d0a619b728eea20295eb6077ac8492c1b00a4ab9a6"

def install
bin.install "stratus"
end
end
end
end

0 comments on commit f290f6c

Please sign in to comment.