summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscript/check-links15
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/
Generated by cgit. See skreutz.com for my tech blog and contact information.