Skip to content

Commit

Permalink
fix error interface not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
dermetfan committed Jun 21, 2022
1 parent f39c2b5 commit 5221604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/application/service/evaluation.go
Expand Up @@ -229,7 +229,7 @@ func (e evaluationService) evaluate(src, evaluator string, args, extraEnv []stri
format = "\n" + format
}
format += "Evaluator %q failed: %w. Stderr: %s"
evalErrs = fmt.Errorf(format, evaluator, *evalErr, string(stderr))
evalErrs = fmt.Errorf(format, evaluator, evalErr, string(stderr))
} else {
return output, stderr, err
}
Expand Down

0 comments on commit 5221604

Please sign in to comment.