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