blob: baad1baed215de79bda08a6b2f3566255c6bfc5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# Deploy websites from buildbot
chmod -R ag+rX rendered/
DEPLOY_USER="stage"
if [ $(git rev-parse --abbrev-ref HEAD) == 'stable' ]; then
DEPLOY_USER="www"
fi
rsync -a --delete rendered/ $DEPLOY_USER@gnunet.org:~/www_deployment/
|