Skip to content

Commit 5e40e22

Browse files
committed
Fixed missing nvm error.
1 parent e5dac10 commit 5e40e22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devtools/assemble.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ pass "Suggested dependencies installed."
145145
# expected to be committed to the repository.
146146
if [ -f "package-lock.json" ]; then
147147
info "Installing front-end dependencies."
148-
if [ -f ".nvmrc" ]; then nvm use; fi
148+
if [ -f ".nvmrc" ]; then nvm use || true; fi
149149
if [ ! -d "node_modules" ]; then npm ci; fi
150150

151151
echo "> Building front-end dependencies."

0 commit comments

Comments
 (0)