mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-06-27 11:38:43 +00:00
[Fix] read
exits 1 when .nvmrc
lacks a trailing newline - avoid that.
Per https://github.com/creationix/nvm/issues/993#issuecomment-205399603
This commit is contained in:
parent
6299cba467
commit
d3e334d86d
2
nvm.sh
2
nvm.sh
@ -140,7 +140,7 @@ nvm_rc_version() {
|
||||
local NVMRC_PATH
|
||||
NVMRC_PATH="$(nvm_find_nvmrc)"
|
||||
if [ -e "$NVMRC_PATH" ]; then
|
||||
read -r NVM_RC_VERSION < "$NVMRC_PATH"
|
||||
read -r NVM_RC_VERSION < "$NVMRC_PATH" || printf ''
|
||||
echo "Found '$NVMRC_PATH' with version <$NVM_RC_VERSION>"
|
||||
else
|
||||
>&2 echo "No .nvmrc file found"
|
||||
|
Loading…
Reference in New Issue
Block a user