From 0c240ccb6d1ea9f7ca9aae2603a999b07c3a25b4 Mon Sep 17 00:00:00 2001 From: apromixately Date: Fri, 4 Mar 2022 01:30:18 +0100 Subject: [PATCH] add remote publishing --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index e0b226a..d61d8cc 100644 --- a/Makefile +++ b/Makefile @@ -28,3 +28,9 @@ publish: pandoc cp *.html ~/public_html/bees/ cp -r images ~/public_html/bees/ mv ~/public_html/bees/beejournal.html ~/public_html/bees/index.html + +.PHONY: remotepub +remotepub: pandoc + scp *.html cymen@tilde.town:~/public_html/bees/ + scp -r images cymen@tilde.town:~/public_html/bees/ + scp beejournal.html cymen@tilde.town:~/public_html/bees/index.html