From d3b5bdcc46221c0803354b53052d4d54c1a2b0f8 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 7 Dec 2023 23:41:23 -0800 Subject: [PATCH] Exclude posting posts, they go to tekuti --- literate-build.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/literate-build.org b/literate-build.org index 7d6a636..78aab06 100644 --- a/literate-build.org +++ b/literate-build.org @@ -77,7 +77,8 @@ The =deploy= target first makes sure that =build= has been executed at least onc deploy: ## Deploy the site to live @[[ -e public/index.html ]] || (echo "Run 'make build' before deploy" && exit 1) rsync --verbose --checksum --recursive --delete \ - --exclude '*~' --exclude '.emacs-local' --delete-excluded \ + --exclude '*~' --exclude '.emacs-local' --exclude 'posts/' \ + --delete-excluded \ public/ ryuslash.org:ryuslash-next/ #+end_src