From 83e792bcaa26415f18cb37d5ce38bd6aa6914dcf Mon Sep 17 00:00:00 2001 From: rscnt Date: Mon, 8 Jun 2015 23:22:58 -0600 Subject: [PATCH] makefile, rsync_upload ignoring .pyc files and vim cache. Signed-off-by: rscnt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bc2fad1f..3f566a0a 100644 --- a/Makefile +++ b/Makefile @@ -17,4 +17,4 @@ collectstatic: $(PY?) $(BASEDIR)/manage.py collectstatic rsync_upload: - rsync -avz -e "ssh -p $(SSH_PORT)" --exclude .git --exclude .ropeproject --exclude __pycache__ --exclude *.psd $(BASEDIR) $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) + rsync -avz -e "ssh -p $(SSH_PORT)" --exclude .git --exclude .ropeproject --exclude __pycache__ --exclude *.pyc --exclude *~ --exclude *.psd $(BASEDIR) $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR)