1

Change repo url

This commit is contained in:
Evan Pratten 2024-02-29 14:39:37 -05:00
parent 9e8e2747c4
commit fa68aa6e61
2 changed files with 1 additions and 10 deletions

View File

@ -193,7 +193,7 @@ wg-cat() {
ewconfig-pull() { ewconfig-pull() {
cwd=$(pwd) cwd=$(pwd)
cd ~/.config/ewconfig cd ~/.config/ewconfig
git pull ewp master git pull master
cd $cwd cd $cwd
} }

View File

@ -10,15 +10,6 @@ if type -p git > /dev/null; then
if [ -d "$EWCONFIG_ROOT/.git" ]; then if [ -d "$EWCONFIG_ROOT/.git" ]; then
echo "Syncing git submodules..." echo "Syncing git submodules..."
git submodule update --init --recursive 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
fi fi