From bf5e3728b58fee9f65488dfd885231be87242abe Mon Sep 17 00:00:00 2001 From: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> Date: Sun, 25 Dec 2022 03:49:27 -0500 Subject: [PATCH] fix(catalog): Fix broken SCALE catalog links (#5773) * fix(catalog): Remove extra references to /docs * those ones are internal --- .github/scripts/build-catalog.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/build-catalog.sh b/.github/scripts/build-catalog.sh index 3ef3dafe4ee..8053aa915fd 100755 --- a/.github/scripts/build-catalog.sh +++ b/.github/scripts/build-catalog.sh @@ -87,12 +87,12 @@ patch_apps() { # Generate SCALE App description file cat ${target}/Chart.yaml | yq .description -r >> ${target}/app-readme.md echo "" >> ${target}/app-readme.md - echo "This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/docs/charts/${train}/${chartname}](https://truecharts.org/docs/charts/${train}/${chartname})" >> ${target}/app-readme.md + echo "This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/${train}/${chartname}](https://truecharts.org/charts/${train}/${chartname})" >> ${target}/app-readme.md echo "" >> ${target}/app-readme.md echo "---" >> ${target}/app-readme.md echo "" >> ${target}/app-readme.md echo "TrueCharts can only exist due to the incredible effort of our staff." >> ${target}/app-readme.md - echo "Please consider making a [donation](https://truecharts.org/docs/about/sponsor) or contributing back to the project any way you can!" >> ${target}/app-readme.md + echo "Please consider making a [donation](https://truecharts.org/about/sponsor) or contributing back to the project any way you can!" >> ${target}/app-readme.md } export -f patch_apps