mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-25 00:26:43 +00:00
Remove the obsolete Piwik integration that loads a project page as JavaScript and breaks every top-level page. Replace unavailable company logos with stable text links, remove the unused tooltip code, and update the stale zero-copy reference. Make the website check fail when tidy is unavailable or reports an error.
11 lines
238 B
Makefile
11 lines
238 B
Makefile
check:
|
|
@command -v tidy >/dev/null 2>&1 || { \
|
|
echo "Error: tidy is required to check the website." >&2; \
|
|
exit 1; \
|
|
}
|
|
@status=0; \
|
|
for f in $$(find . -name '*.html'); do \
|
|
tidy -e "$$f" || status=$$?; \
|
|
done; \
|
|
exit $$status
|