1
0

fix: update dotpull alias to use the correct stow script for re-stowing dotfiles

This commit is contained in:
2025-08-05 00:15:01 -05:00
parent bbd0d54e65
commit 6a81bc8054

View File

@@ -7,7 +7,7 @@ alias h='history'
alias grep='grep --color=auto'
alias d='docker'
alias dc='docker compose'
alias dotpull='echo "🔄 Updating dotfiles..." && git -C ~/.dotfiles pull && echo "🔗 Re-stowing dotfiles..." && (cd ~/.dotfiles/stow && for dir in */; do if [ -d "$dir" ]; then echo " Stowing $dir..." && stow -R -t ~ "$dir" || echo " ⚠️ Failed to stow $dir"; fi; done) && echo "✅ Done."'
alias dotpull='echo "🔄 Updating dotfiles..." && git -C ~/.dotfiles pull && echo "🔗 Re-stowing dotfiles..." && bash ~/.dotfiles/scripts/20-setup-stow.sh ~/.dotfiles && echo "✅ Done."'
alias reloadbash='source ~/.bashrc && echo "Bash config reloaded."'