aboutsummaryrefslogtreecommitdiff
path: root/plenv/shrc.d/plenv.sh
blob: bb52ffe2bfc05a36dca1308455ebfa9badb757d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# POSIX-compatible version of the plenv Bash shell wrapper
[ -d "$HOME"/.plenv ] || return
plenv() {
    case $1 in
        rehash)
            shift
            eval "$(plenv sh-rehash "$@")"
            ;;
        sh-rehash)
            command plenv "$@"
            ;;
        shell)
            shift
            eval "$(plenv sh-shell "$@")"
            ;;
        *)
            command plenv "$@"
            plenv rehash
            ;;
    esac
}