Skip to content

Commit

Permalink
feat: Add a transition message (#2067)
Browse files Browse the repository at this point in the history
  • Loading branch information
simar7 authored Jun 15, 2023
1 parent 30a01b9 commit 39a6d2e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cmd/tfsec/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,21 @@ import (
"github.com/aquasecurity/tfsec/internal/app/tfsec/cmd"
)

const transitionMsg = `
======================================================
tfsec is joining the Trivy family
tfsec will continue to remain available
for the time being, although our engineering
attention will be directed at Trivy going forward.
You can read more here:
https://github.com/aquasecurity/tfsec/discussions/1994
======================================================
`

func main() {
fmt.Print(transitionMsg)
if err := cmd.Root().Execute(); err != nil {
if err.Error() != "" {
fmt.Printf("Error: %s\n", err)
Expand Down

0 comments on commit 39a6d2e

Please sign in to comment.