From 143ed4d44394889e63ee35f1c3ffcc4e34a44f70 Mon Sep 17 00:00:00 2001 From: Rafael David Tinoco Date: Tue, 31 Oct 2023 14:22:12 -0300 Subject: [PATCH] chore(cmd): remove go-cel terminology leftover --- cmd/tracee-rules/main.go | 2 +- cmd/tracee/cmd/analyze.go | 2 +- cmd/tracee/cmd/list.go | 2 +- cmd/tracee/cmd/root.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/tracee-rules/main.go b/cmd/tracee-rules/main.go index cd3e0d3fd03d..2956cf3465c4 100644 --- a/cmd/tracee-rules/main.go +++ b/cmd/tracee-rules/main.go @@ -183,7 +183,7 @@ func main() { }, &cli.StringFlag{ Name: "rules-dir", - Usage: "directory where to search for rules in CEL (.yaml), OPA (.rego), and Go plugin (.so) formats", + Usage: "directory where to search for rules in OPA (.rego) and Go plugin (.so) formats", }, &cli.BoolFlag{ Name: "rego-partial-eval", diff --git a/cmd/tracee/cmd/analyze.go b/cmd/tracee/cmd/analyze.go index 2c3f1379ad00..c1efbb049036 100644 --- a/cmd/tracee/cmd/analyze.go +++ b/cmd/tracee/cmd/analyze.go @@ -51,7 +51,7 @@ func init() { analyze.Flags().StringArray( "signatures-dir", []string{}, - "Directory where to search for signatures in CEL (.yaml), OPA (.rego), and Go plugin (.so) formats", + "Directory where to search for signatures in OPA (.rego) and Go plugin (.so) formats", ) // err = viper.BindPFlag("signatures-dir", analyze.Flags().Lookup("signatures-dir")) // if err != nil { diff --git a/cmd/tracee/cmd/list.go b/cmd/tracee/cmd/list.go index 27f44bff2ead..38142fa1b535 100644 --- a/cmd/tracee/cmd/list.go +++ b/cmd/tracee/cmd/list.go @@ -24,7 +24,7 @@ func init() { listCmd.Flags().StringArray( "signatures-dir", []string{}, - "Directories where to search for signatures in CEL (.yaml), OPA (.rego), and Go plugin (.so) formats", + "Directories where to search for signatures in OPA (.rego) and Go plugin (.so) formats", ) } diff --git a/cmd/tracee/cmd/root.go b/cmd/tracee/cmd/root.go index 095f9c1b8779..8409d4760098 100644 --- a/cmd/tracee/cmd/root.go +++ b/cmd/tracee/cmd/root.go @@ -172,7 +172,7 @@ func initCmd() error { rootCmd.Flags().StringArray( "signatures-dir", []string{}, - "\t\t\t\tDirectories where to search for signatures in CEL (.yaml), OPA (.rego), and Go plugin (.so) formats", + "\t\t\t\tDirectories where to search for signatures in OPA (.rego) and Go plugin (.so) formats", ) err = viper.BindPFlag("signatures-dir", rootCmd.Flags().Lookup("signatures-dir")) if err != nil {