Skip to content

Commit

Permalink
chore(cmd): remove go-cel terminology leftover
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeldtinoco committed Oct 31, 2023
1 parent 18d2ffc commit 143ed4d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/tracee-rules/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion cmd/tracee/cmd/analyze.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tracee/cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/tracee/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func initCmd() error {
rootCmd.Flags().StringArray(
"signatures-dir",
[]string{},
"<dir>\t\t\t\tDirectories where to search for signatures in CEL (.yaml), OPA (.rego), and Go plugin (.so) formats",
"<dir>\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 {
Expand Down

0 comments on commit 143ed4d

Please sign in to comment.