We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 866b5ee commit 6a3827eCopy full SHA for 6a3827e
bin/npm.ps1
@@ -24,9 +24,9 @@ if (Test-Path $NPM_PREFIX_NPM_CLI_JS) {
24
25
# Support pipeline input
26
if ($MyInvocation.ExpectingInput) {
27
- $input | & $NODE_EXE $NPM_CLI_JS $args
+ $input | & $NODE_EXE $NPM_CLI_JS @args
28
} else {
29
- & $NODE_EXE $NPM_CLI_JS $args
+ & $NODE_EXE $NPM_CLI_JS @args
30
}
31
32
exit $LASTEXITCODE
bin/npx.ps1
@@ -24,9 +24,9 @@ if (Test-Path $NPM_PREFIX_NPX_CLI_JS) {
- $input | & $NODE_EXE $NPX_CLI_JS $args
+ $input | & $NODE_EXE $NPX_CLI_JS @args
- & $NODE_EXE $NPX_CLI_JS $args
+ & $NODE_EXE $NPX_CLI_JS @args
0 commit comments