aboutsummaryrefslogtreecommitdiff
path: root/rbenv/shrc.d/plenv.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-06-21 15:18:06 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-06-21 15:18:06 +1200
commit65218faa88450392d2fc098463681788b1b8cb5c (patch)
tree5c1dd4d5f592d6906d5752c97e6592f5c0e5539b /rbenv/shrc.d/plenv.sh
parentMerge branch 'release/v9.26.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-9.26.1.tar.gz (sig)
dotfiles-9.26.1.zip
Merge branch 'hotfix/v9.26.1'v9.26.1
* hotfix/v9.26.1: Correct misnamed rbenv shell file
Diffstat (limited to 'rbenv/shrc.d/plenv.sh')
-rw-r--r--rbenv/shrc.d/plenv.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/rbenv/shrc.d/plenv.sh b/rbenv/shrc.d/plenv.sh
deleted file mode 100644
index ed9ddd03..00000000
--- a/rbenv/shrc.d/plenv.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-# POSIX-compatible version of the rbenv Bash shell wrapper
-[ -d "$HOME"/.rbenv ] || return
-rbenv() {
- case $1 in
- rehash)
- shift
- eval "$(rbenv sh-rehash "$@")"
- ;;
- sh-rehash)
- command rbenv "$@"
- ;;
- shell)
- shift
- eval "$(rbenv sh-shell "$@")"
- ;;
- *)
- command rbenv "$@"
- rbenv rehash
- ;;
- esac
-}