publishing script.

This commit is contained in:
Emmanuel Viennet 2020-09-26 14:36:00 +02:00
parent 682781661c
commit 191d4a58af
1 changed files with 24 additions and 0 deletions

24
tools/publish Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
# Compile and publish to web
if [ ! -e "./docs" ]
then
echo "Wrong current directory: should be launched from DocScoDoc as"
echo " tools/publish"
fi
# --- Build
if [ "$1" = "-b" ]
then
if [ "${CONDA_DEFAULT_ENV}" != "mkdocs" ]
then
echo "Please active mkdocs :"
echo " conda activate mkdocs"
exit 1
fi
mkdocs build
fi
# --- Publish
rsync -vaze ssh site scodoc.org:/var/www/html