From f69d1ef8f4da1d4d648cb380d8a518d2d52c21e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Sat, 15 Oct 2022 16:33:21 +0200 Subject: [PATCH] Remove sync target. --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a0329c3..ba76e60 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OUTPUT_DIR=./output WEB_ROOT=/var/www/themusicinnoise.net/main -.PHONY: all pages blog sync clean install +.PHONY: all pages blog clean install all: pages blog cp -r static/* $(OUTPUT_DIR) @@ -17,9 +17,6 @@ blog: cat blog/templates/index.html/footer-part.html templates/page/footer.html > blog/templates/index.html/footer.html find blog/posts -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait -o $(OUTPUT_DIR)/blog/ -t blog/templates/ -sync: all - rsync -avz --delete $(OUTPUT_DIR)/ nicolas@192.168.1.141::tmin-site - clean: rm -rf $(OUTPUT_DIR) rm -f blog/templates/index.html/header.html