From a1d2e119e9e31a08c723622eda0d0284efd63597 Mon Sep 17 00:00:00 2001 From: Khaldoon Mutahar Date: Sun, 25 Sep 2022 12:32:18 +0300 Subject: [PATCH] fix: alphabetical sorting script path correction --- scripts/check_alphabetical_sorting.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 scripts/check_alphabetical_sorting.sh diff --git a/scripts/check_alphabetical_sorting.sh b/scripts/check_alphabetical_sorting.sh old mode 100644 new mode 100755 index bad0abc..d9815e1 --- a/scripts/check_alphabetical_sorting.sh +++ b/scripts/check_alphabetical_sorting.sh @@ -1,3 +1,3 @@ # Returns a non-zero exit code if the data sites are not alphabetically sorted. -grep 'domain:' _data/sites.yml | grep -v '512kb.club' | tr '[:upper:]' '[:lower:]' | sort -c +grep 'domain:' ../_data/sites.yml | grep -v '512kb.club' | tr '[:upper:]' '[:lower:]' | sort -c