From: Johan Eliasson Date: Mon, 7 Apr 2025 20:20:29 +0000 (+0200) Subject: docs: fix incorrect shell substitution in docker run example command X-Git-Tag: curl-8_14_0~337 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23150149f682723a9e9719435c69cdc901dd3d8a;p=thirdparty%2Fcurl.git 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 --- diff --git a/Dockerfile b/Dockerfile index ccd94b1d1e..7972337dcf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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