diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-08-23 13:52:39 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-08-23 13:52:39 -0300 |
commit | 774ff5a8c652cd8709346e7b9f9651d6a5eadcd7 (patch) | |
tree | 4b815edc484c83202d2f94b767c381df63bd9af3 /Makefile | |
parent | 6726f641099fc5b106651e9f8d7627bb76ddef40 (diff) | |
download | hydra-774ff5a8c652cd8709346e7b9f9651d6a5eadcd7.tar.gz hydra-774ff5a8c652cd8709346e7b9f9651d6a5eadcd7.tar.bz2 |
Feat: Makefile: web_deploy target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,9 +4,11 @@ .PHONY: publish docs -publish: docs +web_deploy: @rsync -avz --delete site/ hydra:/var/sites/hidra/www/ @rsync -avz --delete slides/ hydra:/var/sites/hidra/www/slides/ docs: @mkdocs build + +publish: docs web_deploy |