Skip to content

Commit

Permalink
🐛 when no dependencies are found do not return an error (#583) (#584)
Browse files Browse the repository at this point in the history
Fixes #582

Signed-off-by: Pranav Gaikwad <pgaikwad@redhat.com>
  • Loading branch information
pranavgaikwad authored Apr 22, 2024
1 parent fe870a2 commit 6239317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/dep/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func main() {

if depsFlat == nil && depsTree == nil {
errLog.Info("failed to get dependencies from all given providers")
os.Exit(1)
os.Exit(0)
}

var b []byte
Expand Down

0 comments on commit 6239317

Please sign in to comment.