We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Double quotation mark is ignored when used with an "installed" version of concurrently.
With this simple package.json :
{ "devDependencies": { "concurrently": "5.1.0" } }
When I use npm install and then run this simple command
npm install
npx concurrently "dir /a"
I get an error because it's trying to run two commands ("dir" and "/a") instead of one ("dir /a").
[0] R�pertoire de c:\projets\concurrently-test [0] [0] 07/04/2020 11:18 <DIR> . [0] 07/04/2020 11:18 <DIR> .. [0] 07/04/2020 11:14 0 bar.txt [0] 07/04/2020 11:14 0 foo.txt [0] 07/04/2020 11:18 <DIR> node_modules [0] 07/04/2020 11:18 17�352 package-lock.json [0] 07/04/2020 11:17 64 package.json [0] 4 fichier(s) 17�416 octets [0] 3 R�p(s) 139�463�467�008 octets libres [0] dir exited with code 0 [1] /a exited with code 1
node_modules
c:\projets\concurrently-test>npx concurrently "dir /a" npx: installed 54 in 5.488s [0] Le volume dans le lecteur C n'a pas de nom. [0] Le num�ro de s�rie du volume est # [0] [0] R�pertoire de c:\projets\concurrently-test [0] [0] 07/04/2020 11:36 <DIR> . [0] 07/04/2020 11:36 <DIR> .. [0] 07/04/2020 11:14 0 bar.txt [0] 07/04/2020 11:14 0 foo.txt [0] 07/04/2020 11:17 64 package.json [0] 3 fichier(s) 64 octets [0] 2 R�p(s) 139�512�700�928 octets libres [0] dir /a exited with code 0
c:\projets\concurrently-test>concurrently "dir /a" [0] Le volume dans le lecteur C n'a pas de nom. [0] Le num�ro de s�rie du volume est # [0] [0] R�pertoire de c:\projets\concurrently-test [0] [0] 07/04/2020 11:36 <DIR> . [0] 07/04/2020 11:36 <DIR> .. [0] 07/04/2020 11:14 0 bar.txt [0] 07/04/2020 11:14 0 foo.txt [0] 07/04/2020 11:17 64 package.json [0] 3 fichier(s) 64 octets [0] 2 R�p(s) 139�504�701�440 octets libres [0] dir /a exited with code 0
The text was updated successfully, but these errors were encountered:
I am closing this bug as it seems to be a problem with npx.
See this bug : npm/npx#43
Sorry, something went wrong.
No branches or pull requests
Double quotation mark is ignored when used with an "installed" version of concurrently.
With this simple package.json :
When I use
npm install
and then run this simple commandI get an error because it's trying to run two commands ("dir" and "/a") instead of one ("dir /a").
node_modules
directory, it works properlyEnvironment :
The text was updated successfully, but these errors were encountered: