53 lines
1.8 KiB
Bash
53 lines
1.8 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
echo intended to be run in the event of moving repositories
|
|
git remote -v
|
|
git remote set-url origin git@cpal.pw:~/wallet.git
|
|
git submodule foreach --recursive 'git remote -v'
|
|
cd libsodium
|
|
git remote set-url origin git@cpal.pw:~/libsodium.git
|
|
git remote set-url upstream https://github.com/jedisct1/libsodium.git
|
|
cd ..
|
|
cd mpir
|
|
git remote set-url origin git@cpal.pw:~/mpir.git
|
|
git remote set-url upstream https://github.com/BrianGladman/mpir.git
|
|
cd ..
|
|
cd wxWidgets
|
|
git remote set-url origin git@cpal.pw:~/wxWidgets.git
|
|
git remote set-url upstream https://github.com/wxWidgets/wxWidgets.git
|
|
cd ..
|
|
cd wxWidgets/3rdparty/catch
|
|
git remote set-url origin git@cpal.pw:~/Catch.git
|
|
git remote set-url upstream https://github.com/wxWidgets/Catch.git
|
|
cd ../../..
|
|
cd wxWidgets/3rdparty/nanosvg
|
|
git remote set-url origin git@cpal.pw:~/nanosvg
|
|
git remote set-url upstream https://github.com/wxWidgets/nanosvg
|
|
cd ../../..
|
|
cd wxWidgets/3rdparty/pcre
|
|
git remote set-url origin git@cpal.pw:~/pcre
|
|
git remote set-url upstream https://github.com/wxWidgets/pcre
|
|
cd ../../..
|
|
cd wxWidgets/src/expat
|
|
git remote set-url origin git@cpal.pw:~/libexpat.git
|
|
git remote set-url upstream https://github.com/wxWidgets/libexpat.git
|
|
cd ../../..
|
|
cd wxWidgets/src/jpeg
|
|
git remote set-url origin git@cpal.pw:~/libjpeg-turbo.git
|
|
git remote set-url upstream https://github.com/wxWidgets/libjpeg-turbo.git
|
|
cd ../../..
|
|
cd wxWidgets/src/png
|
|
git remote set-url origin git@cpal.pw:~/libpng.git
|
|
git remote set-url upstream https://github.com/wxWidgets/libpng.git
|
|
cd ../../..
|
|
cd wxWidgets/src/tiff
|
|
git remote set-url origin git@cpal.pw:~/libtiff.git
|
|
git remote set-url upstream https://github.com/wxWidgets/libtiff.git
|
|
cd ../../..
|
|
cd wxWidgets/src/zlib
|
|
git remote set-url origin git@cpal.pw:~/zlib.git
|
|
git remote set-url upstream https://github.com/wxWidgets/zlib.git
|
|
cd ../../..
|
|
winConfigure.sh
|