mirror of
https://github.com/wahyd4/dotfiles.git
synced 2026-08-13 14:56:25 +10:00
9 lines
307 B
Bash
Executable File
9 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
git pull
|
|
read -p "This may overwrite existing files in your home directory. Are you sure? (y/n) " -n 1
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
rsync --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" --exclude "README.md" -av . ~
|
|
fi
|
|
source "$HOME/.bash_profile" |