From fa68aa6e61e3c7507d9470c0710e4795e3657e22 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 29 Feb 2024 14:39:37 -0500 Subject: [PATCH] Change repo url --- configs/shells/bash/macros.sh | 2 +- install-linux.sh | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/configs/shells/bash/macros.sh b/configs/shells/bash/macros.sh index a030b2a..f84e592 100644 --- a/configs/shells/bash/macros.sh +++ b/configs/shells/bash/macros.sh @@ -193,7 +193,7 @@ wg-cat() { ewconfig-pull() { cwd=$(pwd) cd ~/.config/ewconfig - git pull ewp master + git pull master cd $cwd } diff --git a/install-linux.sh b/install-linux.sh index f175a2e..457c82d 100644 --- a/install-linux.sh +++ b/install-linux.sh @@ -10,15 +10,6 @@ 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