Skip to content

Commit

Permalink
fix npm paths
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleycoder authored and hyperupcall committed Jan 15, 2024
1 parent c92fe69 commit 71903da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ Then, execute one of the following to ensure autoenv is loaded when you open a t

```sh
# For Zsh shell (on Linux or macOS)
$ printf '%s\n' "source $(npm root -g)/activate.sh" >> "${ZDOTDIR:-$HOME}/.zprofile"
$ printf '%s\n' "source $(npm root -g)/@hyperupcall/autoenv/activate.sh" >> "${ZDOTDIR:-$HOME}/.zprofile"

# For Bash shell (on Linux)
$ printf '%s\n' "source $(npm root -g)/activate.sh" >> ~/.bashrc
$ printf '%s\n' "source $(npm root -g)/@hyperupcall/autoenv/activate.sh" >> ~/.bashrc

# For Bash shell (on macOS)
$ printf '%s\n' "source $(npm root -g)/activate.sh" >> ~/.bash_profile
$ printf '%s\n' "source $(npm root -g)/@hyperupcall/autoenv/activate.sh" >> ~/.bash_profile
```

</details>
Expand Down

0 comments on commit 71903da

Please sign in to comment.