summaryrefslogtreecommitdiff
path: root/scripts/lint-changelog-filenames
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lint-changelog-filenames')
-rwxr-xr-xscripts/lint-changelog-filenames12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/lint-changelog-filenames b/scripts/lint-changelog-filenames
deleted file mode 100755
index fc07b7153aa..00000000000
--- a/scripts/lint-changelog-filenames
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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
- echo "Changelog files must end in .yml, but these did not:"
- echo "$invalid_files" | sed -e "s/^/* /"
- exit 1
-fi