File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ configuration:
219219[ Ruby] ( https://www.ruby-lang.org/en/ ) configuration:
220220
221221* Add trusted binstubs to the ` PATH ` .
222- * Load the ASDF version manager, falling back to rbenv if not installed .
222+ * Load the ASDF version manager.
223223
224224Shell aliases and scripts:
225225
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ PATH="$HOME/.bin:/usr/local/sbin:$PATH"
55if [ -d " $HOME /.asdf" ]; then
66 . $HOME /.asdf/asdf.sh
77elif command -v rbenv > /dev/null; then
8+ if [ -z $SILENCE_RBENV_DEPRECATION ]; then
9+ echo " The thoughtbot dotfiles have deprecated the use of rbenv in favor" \
10+ " of asdf (https://github.com/asdf-vm/asdf) and will be removed on or" \
11+ " after December 8, 2017. Migrate to asdf or export" \
12+ " SILENCE_RBENV_DEPRECATION=1 in your local dotfiles to silence this" \
13+ " deprecation."
14+ fi
15+
816 eval " $( rbenv init - --no-rehash) "
917fi
1018
You can’t perform that action at this time.
0 commit comments