2015-04-27 20:05:38 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-09-05 13:11:10 -04:00
|
|
|
git clone http://adamgoldsmith.name/cgit/bootstrap.git .dotfiles
|
2015-06-11 10:10:37 -04:00
|
|
|
cd .dotfiles
|
2015-09-05 13:11:10 -04:00
|
|
|
git remote set-url origin http://adamgoldsmith.name/cgit/bootstrap.git
|
|
|
|
git remote set-url --push origin ssh://adamgoldsmith.name:443/srv/git/bootstrap.git
|
2015-09-05 12:23:25 -04:00
|
|
|
|
2015-09-05 13:11:10 -04:00
|
|
|
targets="$@"
|
|
|
|
if [ -n "$targets" ]
|
2015-06-11 10:02:09 -04:00
|
|
|
then
|
2015-09-05 13:11:10 -04:00
|
|
|
./getter.sh "$@"
|
|
|
|
./stower.sh "$@"
|
2015-06-11 10:02:09 -04:00
|
|
|
fi
|