From 1e934e13ddb9ffe52bd88a84548b205662d00eed Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sat, 3 Jun 2023 00:56:45 +0200 Subject: [PATCH] Fix fixup.sh... --- docker/fixup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/fixup.sh b/docker/fixup.sh index 635cedd..bf9db2f 100755 --- a/docker/fixup.sh +++ b/docker/fixup.sh @@ -1,6 +1,6 @@ #!/bin/bash dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" -pushd $dir > /dev/null +pushd $dir/.. > /dev/null pushd site find . -type f -name "*.html" -print0 | while IFS= read -r -d $'\0' file; do sed -i 's/href="index\.html"/href="index-old.html"/g' "$file"