blob: ade5a4c8f642611e6caad55fdd19309f1e9a0660 (
plain)
1
2
3
4
5
6
7
8
9
|
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)
FORCE:
|