From ad44e1346383c02b8480f9df3235a9b955b03044 Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Tue, 29 Oct 2024 11:09:09 -0600 Subject: [PATCH] README: fix volume mount typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c209837..b5930a0 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/clang-format-16:latest clang-format ... +podman run --rm -v "${PWD}":/src ghcr.io/cwpearson/clang-format-16:latest clang-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`.