Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit dbda13a

Browse files
committed
test: Fix test-npm Makefile target for npm 2.8.4
Changes in npm 2.8.4 broke the test-npm target. This change updates to allow the tests to run once again Reviewed-By: Julien Gilli <[email protected]> PR-URL: #25294
1 parent 8294f32 commit dbda13a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ test-npm: node
158158
cd deps/npm ; npm_config_cache="$(shell pwd)/npm-cache" \
159159
npm_config_prefix="$(shell pwd)/npm-prefix" \
160160
npm_config_tmp="$(shell pwd)/npm-tmp" \
161-
PATH="../../:${PATH}" node cli.js run-script test-all && \
161+
PATH="../../:${PATH}" node cli.js run-script test-legacy && \
162+
PATH="../../:${PATH}" node cli.js run-script test && \
162163
PATH="../../:${PATH}" node cli.js prune --prod && \
163164
cd ../.. && \
164165
rm -rf npm-cache npm-tmp npm-prefix

0 commit comments

Comments
 (0)