aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/plenv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh/shrc.d/plenv.sh')
-rw-r--r--sh/shrc.d/plenv.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/sh/shrc.d/plenv.sh b/sh/shrc.d/plenv.sh
deleted file mode 100644
index 6e03618e..00000000
--- a/sh/shrc.d/plenv.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-# POSIX-compatible version of the plenv Bash shell wrapper
-[ -d "$HOME"/.plenv ] || return
-plenv() {
- case $1 in
- rehash)
- shift
- eval "$(plenv sh-rehash "$@")"
- ;;
- shell)
- shift
- eval "$(plenv sh-shell "$@")"
- ;;
- *)
- command plenv "$@"
- ;;
- esac
-}