1
0
mirror of https://gitlab.com/openlp/website.git synced 2024-07-22 00:18:19 +00:00
website/deploy.sh

12 lines
189 B
Bash
Executable File

#!/bin/bash
NIKOLA=`which nikola`
if [[ -f "nikola" ]]; then
NIKOLA="./nikola"
fi
$NIKOLA clean
$NIKOLA build
cd output
rsync -r -a -v -z -e ssh * openlp@openlp.org:public_html/
cd ..