Skip to content
Snippets Groups Projects
Commit 95afa2e4 authored by Pierre Schmitz's avatar Pierre Schmitz
Browse files

checkpkg: use sdiff -s to show differences in the file lists

This makes it much better readable especially for very large file lists.
parent 10941115
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ for _pkgname in ${pkgname[@]}; do
sort -o filelist-$_pkgname filelist-$_pkgname
sort -o filelist-$_pkgname-old filelist-$_pkgname-old
diff -u filelist-$_pkgname-old filelist-$_pkgname
sdiff -s filelist-$_pkgname-old filelist-$_pkgname
if diff filelist-$_pkgname-old filelist-$_pkgname | grep '\.so' > /dev/null 2>&1; then
mkdir -p pkg
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment