From b8af7831e3c572ec2dfcad3fbbc52d94193b8780 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Mon, 13 Oct 2025 17:45:53 +0200 Subject: [PATCH] fix some docs generation issues --- .github/scripts/chart-docs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/chart-docs.sh b/.github/scripts/chart-docs.sh index 0dfade81c1f..c03feda585d 100755 --- a/.github/scripts/chart-docs.sh +++ b/.github/scripts/chart-docs.sh @@ -2,8 +2,8 @@ [ "$DEBUG" == 'true' ] && set -x [ "$STRICT" == 'true' ] && set -e -docs_base="website/src/content/docs/charts" -tmp_docs_base="tmpwebsite/src/content/docs/charts" +docs_base="website/src/content/docs/truecharts/charts" +tmp_docs_base="tmpwebsite/src/content/docs/truecharts/charts" safe_docs=( "CHANGELOG.md" ) @@ -51,7 +51,7 @@ copy_new_docs() { local chart="$2" echo "copying new docs to website for ${chart}" - cp -rf charts/${train}/${chart}/docs/* website/src/content/docs/charts/${train}/${chart}/ 2>/dev/null || : + cp -rf charts/${train}/${chart}/docs/* website/src/content/docs/truecharts/charts/${train}/${chart}/ 2>/dev/null || : cp -rf charts/${train}/${chart}/icon.webp website/public/img/hotlink-ok/chart-icons/${chart}.webp 2>/dev/null || : cp -rf charts/${train}/${chart}/icon-small.webp website/public/img/hotlink-ok/chart-icons-small/${chart}.webp 2>/dev/null || : cp -rf charts/${train}/${chart}/screenshots/* website/public/img/hotlink-ok/chart-screenshots/${chart}/ 2>/dev/null || :