mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
12 lines
189 B
Bash
Executable File
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 ..
|