summaryrefslogtreecommitdiff
path: root/Makefile
blob: ed1caf6c7e184dfebdbe22469758ba8e6230d3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: build deploy

build:
	cd gospeladlershof.de && make build	

deploy:
	@if [ -d /var/www/gospeladlershof.de ]; then\
		rsync --delete -avz intern/ /var/www/gospeladlershof.de/intern/ && \
		cd gospeladlershof.de && rsync --delete -avz public/ /var/www/gospeladlershof.de/gospeladlershof.de/; \
	else \
		echo rsync --delete -avze ssh intern/ online:/var/www/gospeladlershof.de/intern/ && \
		cd gospeladlershof.de && rsync --delete -avze ssh public/ online:/var/www/gospeladlershof.de/gospeladlershof.de/; \
	fi