1
0
Fork 0

Fix node-module

The change recently introduced for #777 was actually breaking the module
completely, as it was only loaded if neither `node` nor `nvm`
were available.
pull/817/head
Tobias Witt 10 years ago
parent b41f485528
commit e5cf83dd6e
No known key found for this signature in database
GPG Key ID: F4AB9D0041E48E7E

@ -7,7 +7,7 @@
#
# Return if requirements are not found.
if (( ! $+commands[nvm] || ! $+commands[node] )); then
if (( ! $+commands[nvm] && ! $+commands[node] )); then
return 1
fi

Loading…
Cancel
Save