This commit is contained in:
2024-08-25 17:18:20 +02:00
parent dda72042fd
commit 00130ace72
171 changed files with 3464 additions and 240 deletions

18
Scripts/Lib/Globals.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/sh
RepoUrl="https://gitlab.com/octtspacc/sitoctt.git"
BranchThis="sitoctt-next"
BranchTranslate="translate-cache"
HugoVersion="0.133.0"
#/bin/sh!
set -e
owd="$(pwd)"
swd="$(dirname "$(realpath "$0")")"
if [ ! -e "${swd}/Lib/Globals.sh" ]
then swd="${swd}/.."
fi
eval "$(sed -e 's| = |=|g' "${swd}/../config.toml")"
Python3="$([ -n "$(which python3)" ] && echo python3 || echo python)"