Fixed pulldots

This commit is contained in:
Phil 2023-01-28 20:53:06 +00:00
parent 916df06461
commit d170745571

View File

@ -163,14 +163,24 @@ function pullall() {
# Pull Dotfiles inside ~/.dotfiles/
function pulldots() {
# Check if folders are there and if its Master or Main
if [ "$(grep -c -i ""master" "~/.dotfiles/.git/config )" -gt 0 ]; then
CURRENTDIR=$(pwd) && echo "dotfiles Found, Pulling master branch..." && cd ~/.dotfiles/ && git checkout master && git pull && cd $CURRENTDIR && echo ""
if grep -q -i "master" ~/.dotfiles/.git/config; then
CURRENTDIR=$(pwd)
echo "dotfiles Found, Pulling master branch..."
cd ~/.dotfiles/
git checkout master
git pull
cd "$CURRENTDIR"
echo ""
elif [ "$(grep -c -i ""main" "~/.dotfiles/.git/config )" -gt 0 ]; then
CURRENTDIR=$(pwd) && echo "dotfiles Found, Pulling main branch..." && cd ~/.dotfiles/ && git checkout main && git pull && cd $CURRENTDIR && echo ""
elif grep -q -i "main" ~/.dotfiles/.git/config; then
CURRENTDIR=$(pwd)
echo "dotfiles Found, Pulling main branch..."
cd ~/.dotfiles/
git checkout main
git pull
cd "$CURRENTDIR"
echo ""
else
echo "I can't seem to file any dotfiles folders" && echo ""