Files
website-hadow.fr/Makefile
T

13 lines
224 B
Makefile
Raw Normal View History

2025-03-20 15:59:10 +01:00
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
2025-03-21 17:27:39 +01:00
test:
bundle exec jekyll serve
2025-03-20 15:59:10 +01:00