From e7279e828e35613c9f8e1789ded06fbf8026816b Mon Sep 17 00:00:00 2001 From: Drew Roen <102626803+drewroengoogle@users.noreply.github.com> Date: Mon, 10 Apr 2023 21:24:36 -0500 Subject: [PATCH] docs: Update README.md (#541) Update README.md Adding an alternative option for installing slsa-verifier if you do not rely on additional tooling. The benefit of this option is improved readability. Signed-off-by: Drew Roen <102626803+drewroengoogle@users.noreply.github.com> Co-authored-by: Ian Lewis --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 98efa0cc0..daa2ded59 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,11 @@ $ go mod tidy $ cd tooling $ grep _ tooling_test.go | cut -f2 -d '"' | xargs -n1 -t go install ``` +Alternatively, if your project does not rely on additional tools and only uses slsa-verifier, you can instead run the following commands: +```bash +$ cd tooling +$ go install github.com/slsa-framework/slsa-verifier/v2/cli/slsa-verifier +``` #### Option 2: Compile manually