mirror of
https://github.com/curl/curl.git
synced 2026-07-16 01:57:18 +03:00
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:
parent
cb9b4a2c97
commit
23150149f6
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue