diff options
author | frosty <passedgoandgot200@disroot.org> | 2025-06-04 17:11:55 -0400 |
---|---|---|
committer | frosty <passedgoandgot200@disroot.org> | 2025-06-04 17:11:55 -0400 |
commit | 2666e6df7c753aaca3faa921fcab5690caadc1fa (patch) | |
tree | 6ffa10bf4602c9d5274db5ebfd07e05581f460e6 | |
parent | 6ce8f79d3b5f6e2d724204e3bcb504b2e7bcb306 (diff) |
fix Makefile
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |