docs: fix incorrect shell substitution in docker run example command

Corrected the volume mount path in the Docker run example by replacing
`(pwd)` with the shell substitution syntax `$(pwd)`. This ensures the
current working directory is properly mounted into the container.

Closes #16990
This commit is contained in:
Johan Eliasson 2025-04-07 22:20:29 +02:00 committed by Daniel Stenberg
parent cb9b4a2c97
commit 23150149f6
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -17,7 +17,7 @@
#
# or get into a shell in the build environment, for example
#
# docker run --rm -it -u $(id -u):$(id -g) -v (pwd):/usr/src -w /usr/src curl/curl bash
# docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl bash
# $ autoreconf -fi
# $ ./configure --without-ssl --without-libpsl
# $ make