You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "moving English version in translation folder";
mkdir -p ./translations/en/docs;
cp -fr ./docs ./translations/en;
cp ./mkdocs.yml ./translations/en/;
echo "start building...";
cd ./translations;
TRANS=./*;
for f in $TRANS; do cd $f echo "Processing folder $f"; SITEDIR="../../build/${f#"./"}"; echo $SITEDIR; mkdocs build --clean --theme-dir "../../mkdocs_windmill" --site-dir $SITEDIR; cd ..; done