blob: 21024bc1ae0f5d78d823ac5423a557fffe6fac0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: FORCE
pull:
@rsync ${LIGA_RSYNC_OPTS} -q --delete --exclude=.htaccess --exclude=.git --exclude=.gitignore -urPz ${LIGA_REMOTE_WWW_DIR}/ http
autocommit: pull
@cd http && git diff --quiet || (git add . && git commit -m 'Autocommit' && git push)
dumps: FORCE
s3cmd -c dumps/.s3config sync ${LIGA_S3_BUCKET} dumps/sync/
./dumps/load-dumps.sh
FORCE:
|