mirror of https://gitlab.com/octtspacc/sitoctt
19 lines
306 B
Bash
Executable File
19 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$(realpath "$0")")/Lib/Globals.sh"
|
|
cd "${swd}/.."
|
|
|
|
mkdir -p ./build
|
|
cd ./build
|
|
cp -r \
|
|
../archetypes ../i18n \
|
|
../content ../static \
|
|
../layouts ../themes \
|
|
../hugo.toml \
|
|
./
|
|
|
|
sh "${swd}/Translate/Get.sh"
|
|
sh "${swd}/Translate/Apply.sh"
|
|
hugo $@
|
|
|
|
cd "${owd}"
|