Skip to content

Commit

Permalink
Added export PATH zprofile example in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fALKENdk authored Aug 22, 2023
1 parent 1ccfddb commit 594cd00
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,16 @@ $ git clone --depth=1 https://github.com/tfutils/tfenv.git ~/.tfenv

2. Add `~/.tfenv/bin` to your `$PATH` any way you like

bash:
```console
$ echo 'export PATH="$HOME/.tfenv/bin:$PATH"' >> ~/.bash_profile
```
zsh:
```console
$ echo 'export PATH="$HOME/.tfenv/bin:$PATH"' >> ~/.zprofile
```

For WSL users
For WSL users:
```bash
$ echo 'export PATH=$PATH:$HOME/.tfenv/bin' >> ~/.bashrc
```
Expand Down

0 comments on commit 594cd00

Please sign in to comment.