Skip to content

Commit

Permalink
Merge branch 'main' into tuan/add-err-handling
Browse files Browse the repository at this point in the history
  • Loading branch information
tuantran1702 authored Jun 25, 2024
2 parents ec02e77 + cac7a30 commit ab25dee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/rollkit/commands/intercept.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ func RunRollupEntrypoint(rollkitConfig *rollconf.TomlConfig, args []string) erro
entrypointCmd := exec.Command(entrypointBinaryFilePath, runArgs...) //nolint:gosec
entrypointCmd.Stdout = os.Stdout
entrypointCmd.Stderr = os.Stderr
entrypointCmd.Stdin = os.Stdin

if err := entrypointCmd.Run(); err != nil {
return fmt.Errorf("failed to run entrypoint: %w", err)
Expand Down

0 comments on commit ab25dee

Please sign in to comment.