Skip to content

Commit c130d6b

Browse files
committed
tools/sort-files: do not sort yml files
Signed-off-by: Philip Li <philip.li@intel.com>
1 parent fbc318f commit c130d6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)