mirror of
https://github.com/wahyd4/dotfiles.git
synced 2026-08-09 04:46:12 +10:00
This commit drops some aliases, functions, and settings from the project that I wasn’t using at all. It also cleans up some of the remaining code.
23 lines
501 B
Bash
Executable File
23 lines
501 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "${BASH_SOURCE}")";
|
|
|
|
git pull origin master;
|
|
|
|
function doIt() {
|
|
rsync --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" \
|
|
--exclude "README.md" --exclude "LICENSE-MIT.txt" -avh --no-perms . ~;
|
|
source ~/.bash_profile;
|
|
}
|
|
|
|
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;
|