diff options
| author | 2020-02-03 16:39:45 -0500 | |
|---|---|---|
| committer | 2020-02-03 16:39:45 -0500 | |
| commit | e79cd687aaa77a4c22a5df18fae8ff8f900560e2 (patch) | |
| tree | ab84213d8117f313b1310210ff05564594ad6c66 /dot_zsh | |
| parent | zsh/path: init (diff) | |
zsh/path: fix luarocks
Diffstat (limited to '')
| -rw-r--r-- | dot_zsh/source/path.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dot_zsh/source/path.zsh b/dot_zsh/source/path.zsh index cdc45a7..82f80a0 100644 --- a/dot_zsh/source/path.zsh +++ b/dot_zsh/source/path.zsh @@ -12,7 +12,7 @@ path+=( ) if (( $+commands[luarocks] )); then - path+=( $(luarocks path --lr-bin) ) + PATH="$PATH:$(luarocks path --lr-bin)" # luarocks puts :s in the output eval $(luarocks path --no-bin) fi if (( $+commands[opam] )); then |
