Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
adharshmk96 authored Nov 21, 2023
1 parent cd14a55 commit 94ba507
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,18 @@ go install github.com/adharshmk96/stk@latest
```

If installation fails, check the GOPATH and GOBIN environment variables. Make sure that GOBIN is added to your PATH.
```zsh

echo export PATH=$PATH:$(go env GOPATH)/bin >> ~/.zshrc
source ~/.zshrc

```

or

```bash

echo export PATH=$PATH:$GOBIN >> ~/.bashrc
echo export PATH=$PATH:$(go env GOPATH)/bin >> ~/.bashrc
source ~/.bashrc

```
Expand Down

0 comments on commit 94ba507

Please sign in to comment.