From e9f22ec64f9169a9b1a0060cf3377b77f955b7a9 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 19 Jan 2021 22:26:32 +0100 Subject: [PATCH] Add publish target --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 3d4492f..e8ae6be 100644 --- a/makefile +++ b/makefile @@ -12,4 +12,7 @@ dependencies: run: core-plugins custom-plugins dependencies @.venv/bin/pelican --autoreload -.PHONY: core-plugins custom-plugins dependencies run +publish: + @.venv/bin/pelican -o /var/www/html/ + +.PHONY: core-plugins custom-plugins dependencies run publish