Add missing pipe

This commit is contained in:
Chris Apple 2024-03-10 10:22:14 -07:00
parent 61bf535f4d
commit 5445d3e7ba

View file

@ -222,7 +222,7 @@ _forgit_diff_view() {
if [ $# -gt 2 ]; then
IFS=" " read -r -a commits <<< "${*:3}"
fi
echo "$input_line" | _forgit_get_files_from_diff_line | xargs -0 \
echo "$input_line" | _forgit_get_files_from_diff_line | xargs -0 | \
"$FORGIT" exec_diff "${commits[@]}" -U"$diff_context" -- | $_forgit_diff_pager
}