aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorfrosty <passedgoandgot200@disroot.org>2025-06-04 17:11:55 -0400
committerfrosty <passedgoandgot200@disroot.org>2025-06-04 17:11:55 -0400
commit2666e6df7c753aaca3faa921fcab5690caadc1fa (patch)
tree6ffa10bf4602c9d5274db5ebfd07e05581f460e6
parent6ce8f79d3b5f6e2d724204e3bcb504b2e7bcb306 (diff)
fix Makefile
-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