8 lines
200 B
Text
8 lines
200 B
Text
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -e # Abort on failure
|
||
|
set -x
|
||
|
|
||
|
# Run the check from the web-server itself to avoid network delays.
|
||
|
ssh debian@hickory.sfconservancy.org "linkchecker https://sfconservancy.org/"
|