Update for split repos

very simple and static, but it works
This commit is contained in:
Adam Goldsmith 2015-09-05 12:23:25 -04:00
parent 714f8f5c33
commit 0adb4f12a0

View File

@ -6,25 +6,39 @@ firstRun=0
cd ~ cd ~
if [ ! -d ".dotfiles" ] if [ ! -d ".dotfiles" ]
then then
git clone http://adamgoldsmith.name/cgit/dotfiles.git .dotfiles git clone http://adamgoldsmith.name/cgit/bootstrap.git .dotfiles
firstRun=1 firstRun=1
else else
echo "~/.dotfiles already exists, not cloning" echo "~/.dotfiles already exists, not cloning"
fi fi
echo "Updating .dotfiles"
cd .dotfiles cd .dotfiles
if [ $firstRun -eq 1 ] if [ $firstRun -eq 1 ]
then then
git remote set-url origin http://adamgoldsmith.name/cgit/dotfiles.git git remote set-url origin http://adamgoldsmith.name/cgit/bootstrap.git
git remote set-url --push origin ssh://adamgoldsmith.name:443/srv/git/dotfiles.git git remote set-url --push origin ssh://adamgoldsmith.name:443/srv/git/bootstrap.git
else
echo "Updating .dotfiles"
git pull
fi fi
git pull
echo "Getting emacs, zsh, and git"
for i in emacs zsh git
do
git clone "http://adamgoldsmith.name/cgit/dotfiles/$i.git"
cd $i
git remote set-url origin http://adamgoldsmith.name/cgit/dotfiles/$i.git
git remote set-url --push origin ssh://adamgoldsmith.name:443/srv/git/dotfiles/$i.git
cd ..
done
echo "getting prezto"
cd zsh
git submodule init git submodule init
git submodule update git submodule update
echo "Updating .dotfiles/zsh/.zprezto" echo "Updating .dotfiles/zsh/.zprezto"
cd zsh/.zprezto/ cd .zprezto
if [ $firstRun -eq 1 ] if [ $firstRun -eq 1 ]
then then
git remote set-url origin http://adamgoldsmith.name/cgit/prezto.git git remote set-url origin http://adamgoldsmith.name/cgit/prezto.git
@ -37,4 +51,3 @@ git submodule update
echo "Stowing emacs, zsh, and git" echo "Stowing emacs, zsh, and git"
cd ~/.dotfiles/ cd ~/.dotfiles/
stow emacs zsh git stow emacs zsh git
echo 'Didn'\''t stow ssh, please stow that manually with "stow ssh" in the .dotfiles directory if you want that'