From 2cd0501b57afe27c32eddb4f4e46a01ccdc4a55e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=CC=81scar=20M=2E=20Lage?= Date: Thu, 31 Mar 2022 20:15:44 +0200 Subject: [PATCH] Update: some changes in make commands - up/sync is now for syncing the stuff - new `buildall` command to hard-copy the build result --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 54e4548..65aedb8 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,10 @@ bash: shell: docker-compose -f docker-compose.yml run build shell -up: +sync: up +up: build + rsync -e ssh --progress --delete -lprtvvzog src/public/ me:/home/www/oscarmlage.com/www/ + +buildall: build cp -r src/public/ me:/home/www/oscarmlage.com/www -sync: - rsync -e ssh --progress --delete -lprtvvzog src/public/ me:/home/www/oscarmlage.com/www/