README.md: fix volume mount typo
Some checks failed
Deploy to GHCR / Build & Publish 0.6.13 (push) Failing after 23s

This commit is contained in:
Carl Pearson
2024-10-29 11:17:35 -06:00
committed by GitHub
parent ebff088a15
commit c0e5442392

View File

@@ -4,7 +4,7 @@
```bash ```bash
cd your/source/tree 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`. 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`.