aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cf6cf18..f21fe21 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,12 @@ REMOTE ?= user@192.168.0.100:/var/www/html
all: build
build:
- hugo build --minify
+ hugo --minify
deploy: build
rsync --rsync-path="$(RSYNC_PATH)" -avP --delete public/ $(REMOTE)
serve:
hugo serve --disableFastRender
+
+.PHONY: all build deploy serve