From 69f13c7593e0913193adfb50f44e94f336d11288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 2 Feb 2014 17:40:29 +0100 Subject: [PATCH] Makefile: exclude graph from upload --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95b6e80..a4ea6cf 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ vpn-status: server.go go build deploy: vpn-status strip vpn-status - rsync -avcz -e ssh nodes.json html assets vpn-status deploy@higgsboson.tk:/srv/http/vpn-status + rsync --exclude 'assets/tinc-graph.*' -avcz -e ssh nodes.json html assets vpn-status deploy@higgsboson.tk:/srv/http/vpn-status ssh -t higgsboson.tk "sudo systemctl restart vpn-status" .PHONY: clean