From 56ae16beea0b78a28d165af84d46e9bdcc58134d Mon Sep 17 00:00:00 2001 From: Sander Hahn Date: Sat, 4 Jan 2014 16:06:38 +0100 Subject: [PATCH] revert mistake --- nvm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvm.sh b/nvm.sh index 3f59e89..8033dad 100755 --- a/nvm.sh +++ b/nvm.sh @@ -38,8 +38,8 @@ nvm_set_nullglob() { # Obtain nvm version from rc file rc_nvm_version() { - if [ -e ~/.nvmrc ]; then - RC_VERSION=`cat ~/.nvmrc | head -n 1` + if [ -e .nvmrc ]; then + RC_VERSION=`cat .nvmrc | head -n 1` echo "Found .nvmrc files with version <$RC_VERSION>" fi }