From bfda33e9f65b288f9eea6b0f771fad26523de437 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 11 Mar 2021 20:20:06 +0100 Subject: Added gitea deployment hook and a favicon --- Makefile | 6 +++--- static/favicon.ico | Bin 0 -> 1150 bytes 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100755 static/favicon.ico diff --git a/Makefile b/Makefile index f10d7a6..104306b 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,15 @@ .POSIX: -DESTDIR=public +DESTDIR=public/ .PHONY: build build: ## make build # builds an optimized version of the website in $(DESTDIR) - @echo "? Generating site" + @echo "----- Generating site -----" hugo --gc --minify --cleanDestinationDir -d $(DESTDIR) .PHONY: clean clean: ## make clean # removed all $(DESTDIR) contents - @echo "? Cleaning old build" + @echo "----- Cleaning old build -----" cd $(DESTDIR) && rm -rf * .PHONY: serve diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100755 index 0000000..216330f Binary files /dev/null and b/static/favicon.ico differ -- cgit v1.2.3