Skip to content

Commit 117afb8

Browse files
committed
fixes wrong cmp, comments out check-html
1 parent 6a5edae commit 117afb8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

_bin/run-all-checks.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,36 +13,36 @@ test -d "$root" || {
1313
echo "[Checking page generation]"
1414
"$bin/check-page-generation.sh"
1515
test $? -eq 0 && echo "--> Page generation looks good."
16-
test $? -eq 0 && any_failed=1
16+
test $? -neq 0 && any_failed=1
1717

1818
echo
1919
echo "[Checking user IDs]"
2020
"$bin/check-user-ids.sh"
2121
test $? -eq 0 && echo "--> User IDs look good."
22-
test $? -eq 0 && any_failed=1
22+
test $? -neq 0 && any_failed=1
2323

2424
echo
2525
echo "[Checking include usage]"
2626
"$bin/check-include-usage.sh"
2727
test $? -eq 0 && echo "--> Includes look good."
28-
test $? -eq 0 && any_failed=1
28+
test $? -neq 0 && any_failed=1
2929

3030
echo
3131
echo "[Checking include documentation]"
3232
"$bin/check-include-help.sh"
3333
test $? -eq 0 && echo "--> Include docs look good."
34-
test $? -eq 0 && any_failed=1
34+
test $? -neq 0 && any_failed=1
3535

3636
echo
3737
echo "[Checking HTML element id values]"
3838
"$bin/check-html-ids.sh"
3939
test $? -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

4848
exit $any_failed

0 commit comments

Comments
 (0)