Exclude posting posts, they go to tekuti

This commit is contained in:
Tom Willemse 2023-12-07 23:41:23 -08:00
parent 9156f202f3
commit d3b5bdcc46

View file

@ -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