Makefile: exclude graph from upload

This commit is contained in:
Jörg Thalheim 2014-02-02 17:40:29 +01:00
parent 3eacd81788
commit 69f13c7593
1 changed files with 1 additions and 1 deletions

View File

@ -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