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 90c2f4c commit 7c57232Copy full SHA for 7c57232
Formula/paranoia.rb
@@ -0,0 +1,19 @@
1
+class Paranoia < Formula
2
+ desc "Inspect certificate authorites in contianer images"
3
+ homepage "https://github.com/jetstack/paranoia"
4
+ version "0.2.0"
5
+ url "https://github.com/jetstack/paranoia/archive/refs/tags/v0.2.0.tar.gz"
6
+ sha256 "c627437fc2ca74fb2e162501b8d44fff7de60f16788de7d19355cd621b8e6203"
7
+ license "Apache-2.0"
8
+ head "https://github.com/jetstack/paranoia", branch: "main"
9
+
10
+ depends_on "go" => :build
11
12
+ def install
13
+ system "go", "build", *std_go_args(ldflags: "-s -w")
14
+ end
15
16
+ test do
17
+ system "false"
18
19
+end
0 commit comments