Skip to content

Commit

Permalink
fix: show dependency name if we cannot retrieve detailed info
Browse files Browse the repository at this point in the history
  • Loading branch information
gamemaker1 committed Jun 28, 2021
1 parent 37090a7 commit 13679a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/yeet
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function print_package_summary {
printb " -> \e[0;33mLicense: $license\e[0m"
printb " -> \e[0;33mDependencies (to install):\e[0m"
for dep in "${dependencies[@]}"; do
printb " -> $(package-query -iSA "$dep")"
printb " -> $(package-query -iSA "$dep" || echo "$dep [?]")"
done

# Import PGP keys
Expand Down

0 comments on commit 13679a7

Please sign in to comment.