fix(nvm): trim non-printable chars from .nvmrc (#10997)

This commit is contained in:
Zeragamba 2022-12-01 13:49:41 -05:00 committed by GitHub
parent 64bc22aee4
commit fc44c49cca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ if zstyle -t ':omz:plugins:nvm' autoload; then
zstyle -t ':omz:plugins:nvm' silent-autoload && _nvm_silent="--silent"
if [[ -n "$nvmrc_path" ]]; then
local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")
local nvmrc_node_version=$(nvm version $(cat "$nvmrc_path" | tr -dc '[:print:]'))
if [[ "$nvmrc_node_version" = "N/A" ]]; then
nvm install