Get rid of Nano tests

This commit is contained in:
ShadowLarkens
2020-11-23 04:45:23 -08:00
parent 87e0b3653f
commit f7fffdff9b
-8
View File
@@ -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=$?