Skip to content

Commit

Permalink
Merge pull request #408 from fALKENdk/feature/add-zprofile-to-readme
Browse files Browse the repository at this point in the history
Added export PATH zprofile example in README.md
  • Loading branch information
Zordrak authored Dec 19, 2023
2 parents 01e171f + 594cd00 commit 641a4ef
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 641a4ef

Please sign in to comment.