site/render.sh
Marc Beninca 4fae5bad34
Some checks failed
/ job (push) Failing after 6m12s
render
2025-06-08 12:11:12 +02:00

15 lines
272 B
Bash
Executable file

#! /usr/bin/env bash
SETTINGS='settings.py'
function main {
local file="$(realpath "${BASH_SOURCE[0]}")"
local root="$(dirname "${file}")"
cd "${root}"
pelican \
--settings "${SETTINGS}" \
"${@}" && \
ln --symbolic '../theme' 'out/fr'
}
main "${@}"