diff options
Diffstat (limited to 'script/check-links')
-rwxr-xr-x | script/check-links | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/script/check-links b/script/check-links new file mode 100755 index 0000000..e745f78 --- /dev/null +++ b/script/check-links @@ -0,0 +1,15 @@ +#! /bin/sh + +set -o errexit +set -o nounset +set -o xtrace + +cabal v2-run exe:site -- rebuild +lychee \ + --exclude-link-local \ + --exclude-loopback \ + --exclude-mail \ + --exclude-private \ + --format detailed \ + --verbose \ + _site/ |