website-hadow.fr/Makefile
2025-03-20 15:59:10 +01:00

11 lines
192 B
Makefile

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