commit 29c9d3dd441215d9978a3e53ee4ce07e594a1aed parent 65836538d0815de9be83414d7e281512f8c1f6ad Author: massi <git@massi.world> Date: Thu, 6 Mar 2025 14:26:04 -0800 make publish: use rsync to copy into public dir Diffstat:
M | Makefile | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -65,8 +65,8 @@ publish: make clean make rsync -rl --delete build/ "mw:/home/protected/builds/massi-world" - ssh mw cp -r /home/protected/builds/massi-world/massi.world /home/public/test-massi.world - ssh mw cp -r /home/protected/builds/massi-world/swatchbuckler.massi.world /home/public/test-swatchbuckler.massi.world + ssh mw rsync -rl --delete /home/protected/builds/massi-world/massi.world/ /home/public/massi.world + ssh mw rsync -rl --delete /home/protected/builds/massi-world/swatchbuckler.massi.world/ /home/public/swatchbuckler.massi.world clean: rm -r build