david/myzsh
david
/
myzsh
Archived
1
0
Fork 0

pushzshconfig 20.06.2013 20:04

This commit is contained in:
david 2013-06-20 20:04:13 +02:00
parent dcd8fa673b
commit a4ee006615
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ timestamp=$(date +%s)
if [ -r $ZSH/lastrun ];then
lastrun=$(cat $ZSH/lastrun)
if [ $((lastrun+604800)) -le $timestamp ]; then
cd $ZSH; git remote -v | grep -i bitbucket >> /dev/null; cd -
cd $ZSH; git remote -v | grep -i bitbucket >> /dev/null
if [ $? -eq 0 ]; then
choice=""
echo "myzsh moved to github.com. unfortunately your"
@ -29,7 +29,7 @@ if [ -r $ZSH/lastrun ];then
echo -e "do you want to fix this? [y/n] \c"
read choice
if [ $choice = "y" ]; then
cd $ZSH; git remote -v | grep @ >> /dev/null
git remote -v | grep @ >> /dev/null
if [ $? -eq 0 ]; then
git remote rm origin
git remote add origin git@github.com:beyondthewall/myzsh.git