blob: 0c8a3e283bc4fac55ab71de5b1fba9df505ce197 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# Deploy rest api from buildbot
if [ -e index.html ]; then
rm index.html
fi
ln -s draft-schanzen-reclaimid.html index.html
chmod -R ag+rX draft-schanzen-reclaimid.* index.html .
rsync --exclude=".*" --exclude="Makefile" -a --delete ./ lsd@firefly.gnunet.org:~/public/lsd0002/
|