Skip to content

Commit

Permalink
🐛 Fix transaction deadlock in dep builder reporting deps.yaml not found.
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Aug 6, 2024
1 parent 2c489ea commit 8dfca75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/deps.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (b *Deps) read() (input []output.DepsFlatItem, err error) {
f, err := os.Open(b.Path)
if err != nil {
if os.IsNotExist(err) {
addon.Activity(err.Error())
addon.Log.Info(err.Error())
err = nil
}
return
Expand Down

0 comments on commit 8dfca75

Please sign in to comment.