summaryrefslogtreecommitdiff
path: root/dot_zsh
diff options
context:
space:
mode:
authorChloe Kudryavtsev <toast@toast.cafe>2020-02-03 16:39:45 -0500
committerChloe Kudryavtsev <toast@toast.cafe>2020-02-03 16:39:45 -0500
commite79cd687aaa77a4c22a5df18fae8ff8f900560e2 (patch)
treeab84213d8117f313b1310210ff05564594ad6c66 /dot_zsh
parentzsh/path: init (diff)
zsh/path: fix luarocks
Diffstat (limited to '')
-rw-r--r--dot_zsh/source/path.zsh2
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