aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-06-18 16:24:18 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-06-18 16:24:18 +1200
commit9988f4033dd0af225e65b631e585032c57e15e11 (patch)
tree043083ec065b1573f34a7e5313fb36c64887a00e /sh/shrc.d
parentRefactor mpd/ncmpcpp stuff completely (diff)
downloaddotfiles-9988f4033dd0af225e65b631e585032c57e15e11.tar.gz
dotfiles-9988f4033dd0af225e65b631e585032c57e15e11.zip
Break plenv stuff into its own target
Diffstat (limited to 'sh/shrc.d')
-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
-}