From 3c3066189cffde4a84e9d24d0dcfabdbeca39b33 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Sun, 30 Jul 2023 20:38:23 -0400 Subject: [PATCH] Add a dev script to sync with upstream. --- utilities/pull-minetest-kit | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 utilities/pull-minetest-kit diff --git a/utilities/pull-minetest-kit b/utilities/pull-minetest-kit new file mode 100755 index 0000000..b2fc720 --- /dev/null +++ b/utilities/pull-minetest-kit @@ -0,0 +1,19 @@ +#!/bin/bash +rsync -rt --info=progress2 mtio:/opt/minebest/ ~/linux-minetest-kit-rsync +code=$? +if [ $code -eq 0 ]; then + echo "Updating ~/linux-minetest-kit-rsync...OK" +else + echo "Updating ~/linux-minetest-kit-rsync...FAILED" +fi +cd ~/linux-minetest-kit-rsync +cat <