debian-mirror-gitlab/scripts/lint-changelog-filenames

13 lines
347 B
Plaintext
Raw Normal View History

2020-03-13 15:44:24 +05:30
#!/bin/sh
lint_paths="changelogs/unreleased"
[ -d "ee/" ] && lint_paths="$lint_paths ee/changelogs/unreleased"
invalid_files=$(find $lint_paths -type f -not -name "*.yml" -not -name ".gitkeep")
if [ -n "$invalid_files" ]; then
2020-06-23 00:09:42 +05:30
echo "Changelog files must end in .yml, but these did not:"
echo "$invalid_files" | sed -e "s/^/* /"
2020-03-13 15:44:24 +05:30
exit 1
fi