Skip to content

Conversation

@nkappler
Copy link

@nkappler nkappler commented Dec 4, 2025

fix #575

Removed the original section about escaping the quotes, since in the given example there was no escaping happening and rephrased it in the note about Windows only supporting double quotes:

Before:

In package.json, escape quotes:

"start": "concurrently 'command1 arg' 'command2 arg'"

After:

Important

Windows only supports double quotes:

concurrently "command1 arg" "command2 arg"

Remember to escape the double quotes in your package.json when using Windows:

"start": "concurrently \"command1 arg\" \"command2 arg\""

removed the original section about escaping (there was no escaping) and included it in the note about windows only supporting double quotes.
@coveralls
Copy link

coveralls commented Dec 4, 2025

Coverage Status

coverage: 100.0%. remained the same
when pulling c3b2b8e on nkappler:patch-1
into 2c30e74 on open-cli-tools:main.

@nkappler
Copy link
Author

nkappler commented Dec 4, 2025

the failing check is due to prettier running on Readme.md...
Is this intended?
Also, no specific error was reported

Not sure if prettier was complaining because of the missing empty lines between blocks. but since it doesn't affect rendering, I added them, maybe it helps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Documentation missing: Single quotes don't work on windows

2 participants