Skip to content

feat(checkpkg): enhance diff command for comparing file lists

Jakub Klinkovský requested to merge lahwaacz/devtools:checkpkg into master

Replace sdiff with diff (also from diffutils) with the following parameters:

  • --side-by-side for the sdiff-like output
  • --suppress-common-lines for the sdiff -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 😉

Merge request reports