From 68cb27acc954472cd9bfbd1dae08fb7633a1056c Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 19 Nov 2023 16:21:47 -0500 Subject: [PATCH] automatically get machines to learn the secondary remote --- install-linux.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/install-linux.sh b/install-linux.sh index 0406ba2..5c258c9 100644 --- a/install-linux.sh +++ b/install-linux.sh @@ -10,6 +10,15 @@ if type -p git > /dev/null; then if [ -d "$EWCONFIG_ROOT/.git" ]; then echo "Syncing git submodules..." git submodule update --init --recursive + + # Make sure that the `ewp` upstream exists + if ! git remote | grep -q ewp; then + echo "Adding secondary git remote" + git remote add ewp git://git.ewpratten.com/ewconfig + git remote set-url --push ewp ssh://ewpratten@git.ewpratten.com:/srv/git/ewconfig + echo "Remotes are:" + git remote -v + fi fi fi