sitoctt/Scripts/Build.sh

18 lines
280 B
Bash
Raw Normal View History

#!/bin/sh
2024-08-25 17:18:20 +02:00
. "$(dirname "$(realpath "$0")")/Lib/Globals.sh"
cd "${swd}/.."
mkdir -p ./build
cd ./build
cp -r \
2024-08-27 01:06:25 +02:00
../hugo.toml ../i18n \
../archetypes ../content \
../layouts ../themes \
./
2024-08-25 17:18:20 +02:00
sh "${swd}/Translate/Get.sh"
sh "${swd}/Translate/Apply.sh"
hugo $@
cd "${owd}"