From b338d91eb8d4ad943a3fbc43e5536024b3fb4d19 Mon Sep 17 00:00:00 2001 From: Zach Bloomquist Date: Wed, 10 Nov 2021 10:20:03 -0500 Subject: [PATCH] fix install-required-node --- circle.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 15d53832e7d7..c3bce24570b2 100644 --- a/circle.yml +++ b/circle.yml @@ -279,7 +279,8 @@ commands: export NODE_VERSION=<> export NODE_VERSION=${NODE_VERSION:-$(cat .node-version)} echo "Installing Node $NODE_VERSION" - echo $NODE_VERSION > .nvmrc + echo $NODE_VERSION > .node-version + cp .node-version .nvmrc curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.35.3/install.sh | bash . ./scripts/load-nvm.sh echo "before nvm install"