mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 13:02:50 +00:00
12 lines
194 B
Bash
12 lines
194 B
Bash
|
#!/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/beta/
|
||
|
cd ..
|