Skip to content

Commit

Permalink
chore(install): Fix unsupported verb %w
Browse files Browse the repository at this point in the history
  • Loading branch information
rthorn-nr committed May 24, 2023
1 parent 762518a commit 80ca965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/install/execution/go_task_recipe_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func (re *GoTaskRecipeExecutor) setOutput(outputFileName string) {
}
}
if err = s.Err(); err != nil {
log.Debugf("error scanning output file %s: %w", outputFileName, err)
log.Debugf("error scanning output file %s: %s", outputFileName, err.Error())
}

re.Output = NewOutputParser(output)
Expand Down

0 comments on commit 80ca965

Please sign in to comment.