aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2023-06-19 11:26:29 +0200
committerGuido Günther <agx@sigxcpu.org>2023-06-19 11:27:08 +0200
commita6c6e9db8f69cbf7e596b456973382282700a6ad (patch)
tree03c9e65f15b968fb52850c9735cf2f18242bd401
parentc28282b36f564897d427f017348e55f068c52500 (diff)
build: Make running locally the default target
Few people will sync to the production site
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2f7b41e..84b28cf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
+server:
+ hugo server -D
+
all:
rm -rf public/*
hugo -D
rsync -e ssh -rv public/* $(REMOTE)
-
-server:
- hugo server -D