Skip to content

Commit c130d6b

Browse files
committed
tools/sort-files: do not sort yml files
Signed-off-by: Philip Li <[email protected]>
1 parent fbc318f commit c130d6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/sort-files

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo "LKP_SRC=$LKP_SRC"
1010
echo $LKP_SRC/distro/keep-deb
1111

1212
find $LKP_SRC/programs -type f -name depends\*
13-
find $LKP_SRC/etc -type f ! -name makepkg.conf
13+
find $LKP_SRC/etc -type f ! -name makepkg.conf ! -name \*.yml
1414
) | while read f; do
1515
LC_ALL=C sort -f $f | uniq > $f.tmp && mv $f.tmp $f
1616
done

0 commit comments

Comments
 (0)