@@ -13,36 +13,36 @@ test -d "$root" || {
1313echo " [Checking page generation]"
1414" $bin /check-page-generation.sh"
1515test $? -eq 0 && echo " --> Page generation looks good."
16- test $? -eq 0 && any_failed=1
16+ test $? -neq 0 && any_failed=1
1717
1818echo
1919echo " [Checking user IDs]"
2020" $bin /check-user-ids.sh"
2121test $? -eq 0 && echo " --> User IDs look good."
22- test $? -eq 0 && any_failed=1
22+ test $? -neq 0 && any_failed=1
2323
2424echo
2525echo " [Checking include usage]"
2626" $bin /check-include-usage.sh"
2727test $? -eq 0 && echo " --> Includes look good."
28- test $? -eq 0 && any_failed=1
28+ test $? -neq 0 && any_failed=1
2929
3030echo
3131echo " [Checking include documentation]"
3232" $bin /check-include-help.sh"
3333test $? -eq 0 && echo " --> Include docs look good."
34- test $? -eq 0 && any_failed=1
34+ test $? -neq 0 && any_failed=1
3535
3636echo
3737echo " [Checking HTML element id values]"
3838" $bin /check-html-ids.sh"
3939test $? -eq 0 && echo " --> HTML element ids look good."
40- test $? -eq 0 && any_failed=1
40+ test $? -neq 0 && any_failed=1
4141
42- echo
43- echo " [Checking site HTML]"
44- " $bin /check-site-html.sh"
45- test $? -eq 0 && echo " --> Site HTML looks good! Congratulations."
46- test $? -eq 0 && any_failed=1
42+ # echo
43+ # echo "[Checking site HTML]"
44+ # "$bin/check-site-html.sh"
45+ # test $? -eq 0 && echo "--> Site HTML looks good! Congratulations."
46+ # test $? -neq 0 && any_failed=1
4747
4848exit $any_failed
0 commit comments