From f7fffdff9beec71d47a5bbfa22e855dfeb3b0ad0 Mon Sep 17 00:00:00 2001 From: ShadowLarkens Date: Mon, 23 Nov 2020 04:45:23 -0800 Subject: [PATCH] Get rid of Nano tests --- tools/ci/validate_files.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tools/ci/validate_files.sh b/tools/ci/validate_files.sh index aad451c868..990535b4e4 100644 --- a/tools/ci/validate_files.sh +++ b/tools/ci/validate_files.sh @@ -22,14 +22,6 @@ if [ $retVal -ne 0 ]; then FAILED=1 fi -#Checking for duplicate nanoui templates -(! find nano/templates/ -type f -exec md5sum {} + | sort | uniq -D -w 32 | grep nano) -retVal=$? -if [ $retVal -ne 0 ]; then - echo -e "${RED}There are identical nanoui template files present.${NC}" - FAILED=1 -fi - #Checking for broken HTML tags (didn't close the quote for class) (! grep -En "<\s*span\s+class\s*=\s*('[^'>]+|[^'>]+')\s*>" **/*.dm) retVal=$?