This commit is contained in:
Sam Hadow 2025-03-20 15:59:10 +01:00
parent 64ea7efaa4
commit a743047082

10
Makefile Normal file
View File

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