@@ -13,36 +13,36 @@ test -d "$root" || {
13
13
echo " [Checking page generation]"
14
14
" $bin /check-page-generation.sh"
15
15
test $? -eq 0 && echo " --> Page generation looks good."
16
- test $? -eq 0 && any_failed=1
16
+ test $? -neq 0 && any_failed=1
17
17
18
18
echo
19
19
echo " [Checking user IDs]"
20
20
" $bin /check-user-ids.sh"
21
21
test $? -eq 0 && echo " --> User IDs look good."
22
- test $? -eq 0 && any_failed=1
22
+ test $? -neq 0 && any_failed=1
23
23
24
24
echo
25
25
echo " [Checking include usage]"
26
26
" $bin /check-include-usage.sh"
27
27
test $? -eq 0 && echo " --> Includes look good."
28
- test $? -eq 0 && any_failed=1
28
+ test $? -neq 0 && any_failed=1
29
29
30
30
echo
31
31
echo " [Checking include documentation]"
32
32
" $bin /check-include-help.sh"
33
33
test $? -eq 0 && echo " --> Include docs look good."
34
- test $? -eq 0 && any_failed=1
34
+ test $? -neq 0 && any_failed=1
35
35
36
36
echo
37
37
echo " [Checking HTML element id values]"
38
38
" $bin /check-html-ids.sh"
39
39
test $? -eq 0 && echo " --> HTML element ids look good."
40
- test $? -eq 0 && any_failed=1
40
+ test $? -neq 0 && any_failed=1
41
41
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
47
47
48
48
exit $any_failed
0 commit comments