diff --git a/tools/build-install-guides-rst.sh b/tools/build-install-guides-rst.sh index 9faaf9e1e5..727b66cdba 100755 --- a/tools/build-install-guides-rst.sh +++ b/tools/build-install-guides-rst.sh @@ -36,4 +36,8 @@ for tag in $TAGS; do mv publish-docs/draft/install-guide-debian/index-debian.html \ publish-docs/draft/install-guide-debian/index.html fi + # Remove Debian specific content from other guides + if [[ "$tag" != "debian" ]]; then + rm -rf publish-docs/draft/install-guide-$tag/debconf + fi done