feat(checkpkg): enhance diff command for comparing file lists
Replace sdiff
with diff
(also from diffutils
) with the following
parameters:
-
--side-by-side
for thesdiff
-like output -
--suppress-common-lines
for thesdiff -s
behavior -
--width="$COLUMNS"
to use the full terminal width (long lines are still truncated but it is definitely better than the default width of 130 chars) -
--color=auto
just because😉