From c0e54423927baeb6a00af041ca87555529f9ffcd Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Tue, 29 Oct 2024 11:17:35 -0600 Subject: [PATCH] README.md: fix volume mount typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2658494..7b8fbfb 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ```bash cd your/source/tree -podman run --rm -v "${PWD}"/src ghcr.io/cwpearson/cmake-format:0.6.13 cmake-format ... +podman run --rm -v "${PWD}":/src ghcr.io/cwpearson/cmake-format:0.6.13 cmake-format ... ``` Inside the container, the working directory is /src, we use the volume mount to map the host working directory `${PWD}` into `/src`: `-v "${PWD}"/src`.