symfony / symfony-docs

The Symfony documentation
https://symfony.com/doc
Other
2.15k stars 5.1k forks source link

Review the syntax of a WSL command #19951

Closed javiereguiluz closed 1 month ago

javiereguiluz commented 1 month ago

Here: https://symfony.com/doc/current/setup/symfony_server.html#enabling-tls

It's rendered like this:

image

But I don't know if the real command is:

explorer.exe \`wslpath -w $HOME/.symfony5/certs\`

or

explorer.exe `wslpath -w $HOME/.symfony5/certs`

We could move this to a .. code-block:: terminal inside the tip block.

wouter90 commented 1 month ago

you need the command without escaping the backticks. With them it will open explorer but not the right folder :)

javiereguiluz commented 1 month ago

Closing as fixed in #19956.