Skip to content

Commit

Permalink
run/runner: Only warn on missing output file
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Jung <a.jung@lancs.ac.uk>
  • Loading branch information
nderjung committed Jan 5, 2021
1 parent ae4a940 commit 7c23b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ func (r *Runner) Run() (int, time.Duration, error) {
path.Join(r.Config.ResultsDir, output.Path),
)
if err != nil {
return state.ExitCode(), time.Since(r.timer), fmt.Errorf("Could not copy result: %s", err)
r.log.Warnf("Could not copy result: %s", err)
}
}

Expand Down

0 comments on commit 7c23b72

Please sign in to comment.