Skip to content

Commit 0efe671

Browse files
ci(NODE-5131): remove npm install in node download script (#602)
1 parent c6c96ce commit 0efe671

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.evergreen/install-dependencies.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,8 @@ fi
105105

106106
echo "npm version: $(npm -v)"
107107

108-
npm install "${NPM_OPTIONS}"
108+
# other repos that use this script run npm install after installing Node.
109+
# we can't in mongodb-client-encryption, because when releasing
110+
# npm install will attempt to build from source, which fails
111+
# because we haven't built libmongocrypt yet.
112+
# npm install "${NPM_OPTIONS}"

0 commit comments

Comments
 (0)