github.com/pojntfx/hydrapp/hydrapp@v0.0.0-20240516002902-d08759d6ca9f/pkg/builders/docs/entrypoint.sh (about) 1 #!/bin/bash 2 3 set -e 4 5 pandoc --to markdown --shift-heading-level-by=-1 --resource-path=docs --standalone "${GOMAIN}/INSTALLATION.md" | pandoc --to html5 --citeproc --listings --shift-heading-level-by=1 --number-sections --resource-path=docs --toc --katex --self-contained --number-offset=1 -o '/hydrapp/dst/INSTALLATION.html' 6 7 if [ "${DST_UID}" != "" ] && [ "${DST_GID}" != "" ]; then 8 chown -R "${DST_UID}:${DST_GID}" /hydrapp/dst 9 fi