site/build.sh

16 lines
272 B
Bash
Raw Permalink Normal View History

2021-11-08 22:09:17 +01:00
#! /usr/bin/env bash
2020-04-12 04:26:47 +02:00
2022-03-13 18:24:39 +01:00
SETTINGS='settings.py'
function main {
local file="$(realpath "${BASH_SOURCE[0]}")"
local root="$(dirname "${file}")"
cd "${root}"
pelican \
--settings "${SETTINGS}" \
2022-03-18 00:02:33 +01:00
"${@}" && \
ln --symbolic '../theme' 'out/fr'
2022-03-13 18:24:39 +01:00
}
main "${@}"