You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# With npm v7.1.0 or later (below output is from v7.3.0):
$ npx concurrently "echo one""echo two""echo three"
[0]
[2]
[4]
[3] /bin/sh: two: command not found
[1] /bin/sh: one: command not found
[5] /bin/sh: three: command not found
[4] echo exited with code 0
[2] echo exited with code 0
[0] echo exited with code 0
[5] three exited with code 127
[1] one exited with code 127
[3] two exited with code 127
npm ERR! code 1
npm ERR! path /Users/blixt/src/github.com/framer/FramerWeb
npm ERR!command failed
npm ERR!command sh -c concurrently echo one echo two echo three
Expected Behavior:
# With npm v7.0.15 or earlier (including npm v6):
$ npx concurrently "echo one""echo two""echo three"
[0] one
[1] two
[2] three
[1] echo two exited with code 0
[0] echo one exited with code 0
[2] echo three exited with code 0
Steps To Reproduce:
Run npx concurrently "echo one" "echo two" "echo three"
See output for 6 commands (three of which were supposed to be arguments)
Also note the error output, which shows the quotes missing (sh -c concurrently echo one echo two echo three).
Environment:
OS: macOS 11.1 Big Sur
Node: 15.5.0 (doesn't seem to matter)
npm: 7.3.0
The text was updated successfully, but these errors were encountered:
What happens if you run npx concurrently -- "echo one" "echo two" "echo three"?
No difference:
# Run with npm v7.3.0:
npx concurrently -- "echo one""echo two""echo three"
[0]
[1] /bin/sh: one: command not found
[2]
[3] /bin/sh: two: command not found
[4]
[5] /bin/sh: three: command not found
[5] three exited with code 127
[4] echo exited with code 0
[3] two exited with code 127
[2] echo exited with code 0
[1] one exited with code 127
[0] echo exited with code 0
npm ERR! code 1
npm ERR! path /Users/blixt/src/github.com/framer/FramerStudio
npm ERR!command failed
npm ERR!command sh -c concurrently -- echo one echo two echo three
Current Behavior:
Expected Behavior:
Steps To Reproduce:
npx concurrently "echo one" "echo two" "echo three"
Also note the error output, which shows the quotes missing (
sh -c concurrently echo one echo two echo three
).Environment:
The text was updated successfully, but these errors were encountered: