Skip to content

Commit

Permalink
Remove deprecation warning for rbenv -> asdf
Browse files Browse the repository at this point in the history
This change removes the deprecation warning and shim we added during the
transition from rbenv to asdf.
  • Loading branch information
geoffharcourt committed Jan 5, 2018
1 parent 2f02c53 commit aa2f5b3
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions zsh/configs/post/path.zsh
Expand Up @@ -4,16 +4,6 @@ PATH="$HOME/.bin:/usr/local/sbin:$PATH"
# load ASDF, falling back to rbenv if not available
if [ -d "$HOME/.asdf" ]; then
. $HOME/.asdf/asdf.sh
elif command -v rbenv >/dev/null; then
if [ -z $SILENCE_RBENV_DEPRECATION ]; then
echo "The thoughtbot dotfiles have deprecated the use of rbenv in favor"\
"of asdf (https://github.com/asdf-vm/asdf) and will be removed on or"\
"after December 8, 2017. Migrate to asdf or export"\
"SILENCE_RBENV_DEPRECATION=1 in your local dotfiles to silence this"\
"deprecation."
fi

eval "$(rbenv init - --no-rehash)"
fi

# mkdir .git/safe in the root of repositories you trust
Expand Down

0 comments on commit aa2f5b3

Please sign in to comment.