diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2024-05-19 14:02:38 +0200 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2025-06-15 01:30:30 +0200 |
| commit | cc92e096557c70e13b03bb6a4bafb2d171e44c5e (patch) | |
| tree | 0f9aae2642a474f55ea8dced0829acb90a27088a | |
| parent | ba7bafdf6569e0debd371d2186c395b26f16729b (diff) | |
| download | haunt-blog-cc92e096557c70e13b03bb6a4bafb2d171e44c5e.tar.gz haunt-blog-cc92e096557c70e13b03bb6a4bafb2d171e44c5e.tar.bz2 haunt-blog-cc92e096557c70e13b03bb6a4bafb2d171e44c5e.zip | |
Makefile: rename deploy target to publish.
Haunt uses 'haunt publish' to deploy a website.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -34,7 +34,7 @@ SENTINEL = .PHONY: \ all \ build \ - deploy \ + publish \ generate-wordpress-articles \ help \ markdown \ @@ -205,14 +205,14 @@ vendor_replicant_artwork_revision.txt: $(VENDOR_REPLICANT_ARTWORK_PATH) Makefile build: static/replicant_banner_white.png $(HAUNT) build -deploy: build +publish: build rsync -av site/ root@git.replicant.us:/var/www/blog.test.replicant.us/ help: @printf "%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n" \ "Available commands:" \ "make build # Generate the HTML files with haunt." \ - "make deploy # Copy the html files to https://blog.test.replicant.us" \ + "make publish # Copy the html files to https://blog.test.replicant.us" \ "make links.txt # Create links.txt file with blog post links." \ " # For security reasons This file needs to be manually" \ " # reviewed manually before usage." \ |
