summarylogtreecommitdiffstats
path: root/exenv.install
blob: 65d3191572b53982630e25c1a81dc58a7fd709b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
post_install() {
  printf "%b\n" "$xnv"
}

post_upgrade() {
  post_install
}

read -d '' xnv <<'EOF'
exenv
=====

All exenv binaries, and autocompletion for bash and zsh have been
installed.

The only requirement for exenv to function properly is to add
~/.exenv/shims to your PATH:

    $ echo 'PATH=$HOME/.exenv/shims:$PATH' >> ~/.bashrc

zsh note: Modify your ~/.zshrc file instead of ~/.bashrc

For a kitchen sink configuration, add `exenv init` to your shell:

    $ echo 'eval "$(exenv init -)"' >> ~/.bash_profile

zsh note: Modify your ~/.zshenv file instead of ~/.bash_profile
EOF