From dca9f0a1b496b2fd47bd5caea4a7861a7f018615 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Sat, 5 Aug 2023 00:44:02 -0400 Subject: [PATCH] Add approprate --exclude directories and fix output (instructions). --- utilities/pull-minetest-kit | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/utilities/pull-minetest-kit b/utilities/pull-minetest-kit index b2fc720..9069a0b 100755 --- a/utilities/pull-minetest-kit +++ b/utilities/pull-minetest-kit @@ -1,5 +1,7 @@ #!/bin/bash -rsync -rt --info=progress2 mtio:/opt/minebest/ ~/linux-minetest-kit-rsync +rsync -rtv mtio:/opt/minebest/ ~/linux-minetest-kit-rsync --exclude "mtkit/minetest/" --exclude "assemble/" +# ^ exclude mtkit/minetest/ and assemble/ since they are remotely-built copies of the program. +# --info=progress2 code=$? if [ $code -eq 0 ]; then echo "Updating ~/linux-minetest-kit-rsync...OK" @@ -12,8 +14,8 @@ cat <