diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..936f353 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +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 +