diff --git a/README.md b/README.md index 9a4a2de..2ad11c9 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,6 @@
- 🙌 Refer to https://safedep.io/docs for the documentation 📖 -
[](https://goreportcard.com/report/github.com/safedep/vet)  @@ -16,13 +13,13 @@ [](https://safedep.io/docs) -## Automate Open Source Package Vetting in CI/CD +## Policy as Code for Open Source Software Supply Chain `vet` is a tool for identifying risks in open source software supply chain. It goes beyond just vulnerabilities and provides visibility on OSS package risks due to it's license, popularity, security hygiene, and more. `vet` is designed -with the goal of enabling trusted OSS package consumption by integrating with -CI/CD and `policy as code` as guardrails. +with the goal of helping software development teams consume safe and trusted +OSS components through automated vetting in CI/CD. * [🔥 vet in action](#-vet-in-action) * [Getting Started](#getting-started) @@ -43,6 +40,7 @@ CI/CD and `policy as code` as guardrails. * [📖 Documentation](#-documentation) * [🎊 Community](#-community) * [💻 Development](#-development) +* [Support](#support) * [Star History](#star-history) * [🔖 References](#-references) @@ -281,6 +279,12 @@ First of all, thank you so much for showing interest in `vet`, we appreciate it Refer to [CONTRIBUTING.md](CONTRIBUTING.md) +## Support + +[SafeDep](https://safedep.io) provides enterprise support for `vet` +deployments. Check out [SafeDep Cloud](https://safedep.io) for large scale +deployment and management of `vet` in your organization. + ## Star History [](https://star-history.com/#safedep/vet&Date) diff --git a/cmd/cloud/query.go b/cmd/cloud/query.go index f9f8f22..3b98f62 100644 --- a/cmd/cloud/query.go +++ b/cmd/cloud/query.go @@ -2,7 +2,6 @@ package cloud import ( "errors" - "fmt" "os" "sort" @@ -84,7 +83,7 @@ func renderQueryResponseAsTable(response *query.QueryResponse) error { return nil } - ui.PrintSuccess(fmt.Sprintf("Query returned %d results", response.Count())) + ui.PrintSuccess("Query returned %d results", response.Count()) // Header headers := []string{}