Skip to content

Commit

Permalink
replace let-env FOO = ... by $env.FOO = ...
Browse files Browse the repository at this point in the history
  • Loading branch information
amtoine committed Jul 1, 2023
1 parent 18f0db8 commit 2bcc24d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/installation/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ one way to install `nu-git-manager` right now is the following manual process
> let's say you have defined the following environment variable
> ```nu
> # in `$nu.env-path`
> let-env NU_LIB_PATH = "/path/to/libs"
> $env.NU_LIB_PATH = "/path/to/libs"
> ```
- clone the repo to a location you want it to be
Expand All @@ -14,7 +14,7 @@ git clone https://github.com/amtoine/nu-git-manager.git ($env.NU_LIB_PATH | path
- make it loadable in your `NU_LIB_DIRS`
```nu
# in `$nu.env-path`
let-env NU_LIB_DIRS = ($env.NU_LIB_DIRS | append $env.NU_LIB_PATH)
$env.NU_LIB_DIRS = ($env.NU_LIB_DIRS | append $env.NU_LIB_PATH)
```
- update it regularly to have the latest version
```nu
Expand Down

0 comments on commit 2bcc24d

Please sign in to comment.