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 \
|
2024-08-29 00:17:05 +02:00
|
|
|
../content ../assets \
|
2024-08-27 17:21:32 +02:00
|
|
|
../layouts ../themes \
|
2024-08-29 00:17:05 +02:00
|
|
|
../hugo.toml ../static \
|
2024-08-24 02:16:17 +02:00
|
|
|
./
|
2024-08-25 17:18:20 +02:00
|
|
|
|
2024-08-29 00:17:05 +02:00
|
|
|
if [ "${sitocttEnv}" = GitHub ]
|
|
|
|
then cp ./layouts/partials/assetsRoot.GitHub.html ./layouts/partials/assetsRoot.html
|
|
|
|
fi
|
|
|
|
|
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}"
|