Skip to content

Commit

Permalink
Merge pull request #60 from veracode/veracode-cli-release-2.36.0
Browse files Browse the repository at this point in the history
Update formula for veracode-cli version 2.36.0
  • Loading branch information
shahid-veracode authored Nov 21, 2024
2 parents 48ffce7 + 8e88e81 commit 8d862ce
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Formula/veracode-cli.rb
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
class VeracodeCli < Formula
desc "Command-line tool for testing application security with Veracode"
homepage "https://www.veracode.com"
version "2.35.0"
version "2.36.0"
license "MIT"
if OS.mac?
if Hardware::CPU.arm?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.35.0_macosx_arm64.tar.gz"
sha256 "37641121f6f5043a1aa1314be18f14bf459b8adc4f3233977f25d25788b6a97f"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.36.0_macosx_arm64.tar.gz"
sha256 "d4c821c1a1d6eaa09ff78fc80c9108062de29cead5ff31cd22bb3a980718ebc4"
elsif Hardware::CPU.intel?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.35.0_macosx_x86.tar.gz"
sha256 "de68651f6757ac96627d25f1e94b27045767206981b3ba07cea3dcb76235729b"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.36.0_macosx_x86.tar.gz"
sha256 "2f72365ddb1956d6a62d404c8a065605304e666d2831fc31567d59bade375740"
end
elsif OS.linux?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.35.0_linux_x86.tar.gz"
sha256 "c13b6a6bfea5c21269e0e057fe02cb55ad5b1a30efacf0ee95b9ea7e5a0761db"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.36.0_linux_x86.tar.gz"
sha256 "28c17caa672722fec04a27d2123b4c51702a1b74619a7e8f4102c6605ddd2cc9"
end
def install
bin.install "veracode"
Expand Down
24 changes: 24 additions & 0 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
class VeracodeCliAT2350 < Formula
desc "Command-line tool for testing application security with Veracode"
homepage "https://www.veracode.com"
version "2.35.0"
license "MIT"
if OS.mac?
if Hardware::CPU.arm?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.35.0_macosx_arm64.tar.gz"
sha256 "37641121f6f5043a1aa1314be18f14bf459b8adc4f3233977f25d25788b6a97f"
elsif Hardware::CPU.intel?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.35.0_macosx_x86.tar.gz"
sha256 "de68651f6757ac96627d25f1e94b27045767206981b3ba07cea3dcb76235729b"
end
elsif OS.linux?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.35.0_linux_x86.tar.gz"
sha256 "c13b6a6bfea5c21269e0e057fe02cb55ad5b1a30efacf0ee95b9ea7e5a0761db"
end
def install
bin.install "veracode"
end
test do
system "#{bin}/veracode", "version"
end
end

0 comments on commit 8d862ce

Please sign in to comment.