From 48bff504b4f70977aa8d73389ba876a1c8231d16 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 1 Dec 2025 11:08:21 -0500 Subject: [PATCH] Fix build script to properly publish docs --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 8d38d36..02f1bdb 100755 --- a/build.sh +++ b/build.sh @@ -14,7 +14,7 @@ cd docs make clean make html touch build/html/.nojekyll -if [ -d "./../parsedmarc-docs" ]; then +if [ -d "../../parsedmarc-docs" ]; then cp -rf build/html/* ../../parsedmarc-docs/ fi cd ..