Fixed initify and cinitify without -r flag

This commit is contained in:
Austen Adler 2014-08-07 00:44:52 -04:00
parent a7bdf2d58a
commit b151ef88f4

4
bashrc
View File

@ -201,7 +201,7 @@ function cinitify(){
if [[ ! $3 == "-r" ]] ; then
echo -n "Pull from: "
read from
git pull $FROM
git pull $from
git checkout master
fi
}
@ -217,7 +217,7 @@ function initify(){
if [[ ! $3 == "-r" ]] ; then
echo -n "Pull from: "
read from
git pull $FROM
git pull $from
git checkout master
fi
}