From ec1f028100fac6328b007101d2e80dcfd493ec5e Mon Sep 17 00:00:00 2001 From: Cory Latschkowski Date: Tue, 22 Aug 2023 11:14:03 -0500 Subject: [PATCH] fix: linting --- .wordlist-md | 2 ++ scripts/sort-wordlist.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.wordlist-md b/.wordlist-md index 523dbd6..dae541d 100644 --- a/.wordlist-md +++ b/.wordlist-md @@ -40,6 +40,7 @@ KieApp Koku KokuMetricsConfig Kubernetes +Kubeturbo Kyverno LDAP Lifecycle @@ -86,6 +87,7 @@ TODO TaskRun Tekton Thanos +Turbonomic UI VolSync Workspaces diff --git a/scripts/sort-wordlist.sh b/scripts/sort-wordlist.sh index d4c105a..3e1a5b0 100755 --- a/scripts/sort-wordlist.sh +++ b/scripts/sort-wordlist.sh @@ -8,7 +8,7 @@ WORDLIST=.wordlist-md if [ -e ${TEMP_WORDLIST} ] ; then rm ${TEMP_WORDLIST} fi -cat .wordlist-md | LC_COLLATE=C sort -u > ${TEMP_WORDLIST} +LC_COLLATE=C sort -u < .wordlist-md > ${TEMP_WORDLIST} if [ -e ${WORDLIST} ] ; then rm ${WORDLIST}