From 23150149f682723a9e9719435c69cdc901dd3d8a Mon Sep 17 00:00:00 2001 From: Johan Eliasson Date: Mon, 7 Apr 2025 22:20:29 +0200 Subject: [PATCH] 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2