From fc0a8acbbd7771fb6cda4a3b3371cc3ef562cc49 Mon Sep 17 00:00:00 2001 From: Wesley Moore Date: Wed, 27 Oct 2021 17:29:15 +1000 Subject: [PATCH] make => just --- v2/Justfile | 10 ++++++++++ v2/Makefile | 7 ------- 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 v2/Justfile delete mode 100644 v2/Makefile diff --git a/v2/Justfile b/v2/Justfile new file mode 100644 index 0000000..55a1967 --- /dev/null +++ b/v2/Justfile @@ -0,0 +1,10 @@ +default: + @just --list + +# rsync to production +deploy: build + rsync -avzhP --delete public/ hardforze.binarytrance.com:infrastructure/volumes/www/wezm.net/v2/ + +# build with zola +build: + zola build diff --git a/v2/Makefile b/v2/Makefile deleted file mode 100644 index 438d0d7..0000000 --- a/v2/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -all: - @echo "Available targets:" - @echo "- deploy" - -deploy: - zola build - rsync -avzhP --delete public/ hardforze.binarytrance.com:infrastructure/volumes/www/wezm.net/v2/