Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/aur-sync
Original file line number Diff line number Diff line change
Expand Up @@ -427,11 +427,12 @@ if (( auto_key_retrieve )); then
fi

# Verify dependency tree (#20)
# Use pacini to preprocess .SRCINFO to avoid CRLF (#1203)
if (( graph )); then
if ! { while read -r pkg; do
[[ $pkg ]] && printf '%s\0' "$pkg/.SRCINFO"
done
} | xargs -0 cat -- | aur graph "${graph_args[@]}" REVERSE=1
} | xargs -0 cat -- | pacini | aur graph "${graph_args[@]}" REVERSE=1
then
printf >&2 '%s: failed to verify dependency graph\n' "$argv0"
exit 1
Expand Down