diff options
-rwxr-xr-x | bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index f088076..0e6e5db 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -4,6 +4,7 @@ git pull origin master function doIt() { rsync --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" \ --exclude "README.md" --exclude "LICENSE-MIT.txt" -av --no-perms . ~ + source ~/.bash_profile } if [ "$1" == "--force" -o "$1" == "-f" ]; then doIt @@ -15,4 +16,3 @@ else fi fi unset doIt -source ~/.bash_profile |