copy:
	@if [ "$$EUID" -ne 0 ]; then \
		echo "Please run as root"; \
	else \
		cp -r ./_site/* /var/www/html/; \
		chown -R nginx:nginx /var/www/html/; \
	fi
build:
	bundle exec jekyll build
test:
	bundle exec jekyll serve

