Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ After installing Golang, _open a new shell session_ and run `go version` to make
# Next, reload your shell configuration
source ~/.bashrc
```

```sh
# For Linux/WSL(for fish shell)
echo 'set -gx PATH $PATH $HOME/go/bin' >> ~/.config/fish/config.fish
source ~/.config/fish/config.fish
```
```sh
# For macOS
echo 'export PATH=$PATH:$HOME/.local/opt/go/bin' >> ~/.zshrc
Expand Down