diff --git a/README.md b/README.md index d922f42..d81a545 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,8 @@ open 'https://itunes.apple.com/us/app/xcode/id497799835?mt=12' sudo xcodebuild -license ``` -Then run the bootstrapping script. This installs Homebrew and Ansible, clones -the dotfiles repo into `~/Dropbox/dotfiles`, and creates a symlink to that repo -in `~/.dotfiles`. +Then run the bootstrapping script. This installs Homebrew and Ansible, and +clones the dotfiles repo into `~/.dotfiles`. ``` shell curl -L https://raw.github.com/kejadlen/dotfiles/master/bootstrap.sh | sh @@ -31,3 +30,9 @@ Now ansible can be run to set up mostly everything. cd ~/.dotfiles/ansible && ansible-playbook main.yml --ask-sudo-pass rm -f ~/*.retry ``` + +# Post-Ansible + +``` shell +ln -sF ~/Dropbox/dotfiles ~/.dotfiles +``` diff --git a/bootstrap.sh b/bootstrap.sh index 19c5836..82a57c6 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,6 +3,4 @@ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" /usr/local/bin/brew install ansible -mkdir -p ~/Dropbox/dotfiles -git clone https://github.com/kejadlen/dotfiles.git ~/Dropbox/dotfiles -ln -s ~/Dropbox/dotfiles ~/.dotfiles +git clone https://github.com/kejadlen/dotfiles.git ~/.dotfiles