Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: sort.py: quote diff lines (#6594)
To make it clearer when only whitespace was fixed on a given line. Before: $ printf 'private-bin a,b \n' >foo.profile $ ./contrib/sort.py -n foo.profile sort.py: checking 1 profile(s)... foo.profile:1:-private-bin a,b foo.profile:1:+private-bin a,b After: $ printf 'private-bin a,b \n' >foo.profile $ ./contrib/sort.py -n foo.profile sort.py: checking 1 profile(s)... foo.profile:1:-'private-bin a,b ' foo.profile:1:+'private-bin a,b' See commit 53ff8e0 ("build: sort.py: strip trailing whitespace in all lines", 2024-11-26) / PR #6556.
- Loading branch information