Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: hermetic build README syntax fix #3391

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hermetic_build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ libraries:
--quiet \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/workspace" \
-v /path/to/api_definition:/workspace \
-v /path/to/api_definition:/workspace/apis \
gcr.io/cloud-devrel-public-resources/java-library-generation:image-tag
```

Expand All @@ -232,7 +232,7 @@ libraries:
* `-v "$(pwd):/workspace"` maps the host machine's current working directory
to the /workspace folder.
The image is configured to perform changes in this directory.
* `-v /path/to/api_definition:/workspace` maps the host machine's API
* `-v /path/to/api_definition:/workspace/apis` maps the host machine's API
definitions folder to `/workspace/apis` folder.

3. An advanced example:
Expand Down
Loading