From 22b2dcc54ef2485bf926c69f150f6a9aab021460 Mon Sep 17 00:00:00 2001 From: Dante Catalfamo Date: Fri, 28 May 2021 14:20:08 -0400 Subject: Begin moving shell scripts into a Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..094f888 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +server: theme + hugo version + hugo -D server + +deploy: theme + hugo + rsync -va --progress --delete --rsync-path="/usr/bin/openrsync" public/ blog@lambda.cx:/var/www/htdocs/blog.lambda.cx/ + rm -r public + +theme: + git submodule update --init --recursive + +update: + git submodule update --remote --merge + +.PHONY: deploy servre theme update -- cgit v1.2.3