From 706ef248c5c50f552846d0f097de4f96b24ec09e Mon Sep 17 00:00:00 2001 From: David Sanders Date: Sat, 11 May 2024 23:20:17 -0700 Subject: [PATCH] fix: use nvm --version to support older NVM versions --- src/scripts/install-nvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/install-nvm.sh b/src/scripts/install-nvm.sh index e96c18a..ba55143 100644 --- a/src/scripts/install-nvm.sh +++ b/src/scripts/install-nvm.sh @@ -28,5 +28,5 @@ else fi # Store the version so cache keys can easily use it - nvm -v > ~/.nvm-version; + nvm --version > ~/.nvm-version; fi