Exclude posting posts, they go to tekuti
This commit is contained in:
parent
9156f202f3
commit
d3b5bdcc46
1 changed files with 2 additions and 1 deletions
|
@ -77,7 +77,8 @@ The =deploy= target first makes sure that =build= has been executed at least onc
|
||||||
deploy: ## Deploy the site to live
|
deploy: ## Deploy the site to live
|
||||||
@[[ -e public/index.html ]] || (echo "Run 'make build' before deploy" && exit 1)
|
@[[ -e public/index.html ]] || (echo "Run 'make build' before deploy" && exit 1)
|
||||||
rsync --verbose --checksum --recursive --delete \
|
rsync --verbose --checksum --recursive --delete \
|
||||||
--exclude '*~' --exclude '.emacs-local' --delete-excluded \
|
--exclude '*~' --exclude '.emacs-local' --exclude 'posts/' \
|
||||||
|
--delete-excluded \
|
||||||
public/ ryuslash.org:ryuslash-next/
|
public/ ryuslash.org:ryuslash-next/
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue