forked from colonelpanic/dotfiles
18 lines
503 B
Bash
Executable File
18 lines
503 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "${BASH_SOURCE}")"
|
|
git pull
|
|
function doIt() {
|
|
rsync --exclude "oh-my-zsh" --exclude "tmux-powerline" --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" --exclude "README.md" --exclude "setup.sh" -av . ~
|
|
}
|
|
if [ "$1" == "--force" -o "$1" == "-f" ]; then
|
|
doIt
|
|
else
|
|
read -p "This may overwrite existing files in your home directory. Are you sure? (y/n) " -n 1
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
doIt
|
|
fi
|
|
fi
|
|
unset doIt
|
|
source ~/.bash_profile
|