From e7b7c585cfb4d36eb690d216bb6e6feba6721e95 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sun, 8 Aug 2021 17:23:09 +0200 Subject: [PATCH] fixup! fixup! build: makefile: add deploy step --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index fcec24d..1af5ba2 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ deploy: then echo "Missing one of SSH_USER, SSH_HOST, or SSH_TARGET" >&2; \ exit 1; \ fi + export HOME="$$(mktemp -d)" rsync -e 'ssh -o StrictHostKeyChecking=no' --progress -avz --delete public/ "$$SSH_USER@$$SSH_HOST:$$SSH_TARGET" .PHONY: clean