diff options
Diffstat (limited to 'boards/run.sh')
-rwxr-xr-x | boards/run.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/boards/run.sh b/boards/run.sh new file mode 100755 index 0000000..bd6467b --- /dev/null +++ b/boards/run.sh @@ -0,0 +1,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} --exclude-glob .* +EOF + fi +fi |