Skip to content

Commit

Permalink
fix(client): should not print error
Browse files Browse the repository at this point in the history
  • Loading branch information
NateScarlet committed Jul 17, 2022
1 parent 19c91d4 commit 3d3081e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/client/javascript_engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ func (e nodeJSEngine) Run(ctx context.Context, unsafeJS string) (output string,
err = cmd.Run()
if err != nil {
if stderr.Len() > 0 {
print(stderr.String())
err = fmt.Errorf("%w: %s", err, stderr.String())
}
return
Expand Down

0 comments on commit 3d3081e

Please sign in to comment.