blob: b3fc2e6ab46896ca8c2c00a354c4ca285f812f92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
cd $(dirname $0)
python generate.py
if command -v lftp &> /dev/null
then
if [ -z ${LIGA_BOARDS_FTP_ENABLED+x} ]
then
:
else
lftp << EOF
open -u ${LIGA_FTP_USER},${LIGA_FTP_PASS} ${LIGA_FTP_HOST}
mirror -R output/ ${LIGA_BOARDS_FTP_PATH} --delete --exclude-glob .*
EOF
fi
fi
|