diff options
author | Julien Dessaux | 2021-10-28 21:22:36 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-10-28 21:22:36 +0200 |
commit | 00acbaeba66b413997c60a10bc14758748afcbb4 (patch) | |
tree | 0a6f0c6e90cd82236bc06caaafe369eecf992938 | |
parent | Typos (diff) | |
download | www-00acbaeba66b413997c60a10bc14758748afcbb4.tar.gz www-00acbaeba66b413997c60a10bc14758748afcbb4.tar.bz2 www-00acbaeba66b413997c60a10bc14758748afcbb4.zip |
Fixed makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ build: ## make build # builds an optimized version of the website in $(DESTDIR) clean: ## make clean # removed all $(DESTDIR) contents @echo "----- Cleaning old build -----" rm -f search/index.html search/index.json search/search - cd $(DESTDIR) && rm -rf * + rm -rf $(DESTDIR) .PHONY: serve serve: ## make serve # hugo web server development mode |