Skip to content

Commit

Permalink
Fixed typo in error message for playbook v1
Browse files Browse the repository at this point in the history
  • Loading branch information
MaartendeKruijf committed Mar 14, 2024
1 parent 3ef3db4 commit 6e2c60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/validator/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func IsValidCacaoJson(data []byte) error {
var err error
switch version {
case cacao.CACAO_VERSION_1:
return errors.New("you submitted a cacap v1 playbook. at the moment, soarca only supports cacao v2 playbooks")
return errors.New("you submitted a cacao v1 playbook. at the moment, soarca only supports cacao v2 playbooks")
case cacao.CACAO_VERSION_2:
sch, err = compiler.Compile(oca_cacao_schemas)
if err != nil {
Expand Down

0 comments on commit 6e2c60e

Please sign in to comment.