summaryrefslogtreecommitdiff
path: root/.gitlab/linters/check-changelogs.sh
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab/linters/check-changelogs.sh')
-rwxr-xr-x.gitlab/linters/check-changelogs.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/.gitlab/linters/check-changelogs.sh b/.gitlab/linters/check-changelogs.sh
deleted file mode 100755
index 56ac187a90..0000000000
--- a/.gitlab/linters/check-changelogs.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-COLOR_RED="\e[31m"
-COLOR_GREEN="\e[32m"
-COLOR_NONE="\e[0m"
-
-grep TBA libraries/*/changelog.md && (
- echo -e "${COLOR_RED}Error: Found \"TBA\"s in changelogs.${COLOR_NONE}"
- exit 1
-) || (
- echo -e "${COLOR_GREEN}changelogs look okay.${COLOR_NONE}"
- exit 0
-)
-