File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Run all commands from the repo root (where `azldev.toml` lives). If the terminal
6565| Add a component | ` azldev comp add ` |
6666| Build a component | ` azldev comp build -p <name> -q ` |
6767| Build chain (auto-publish to local repo) | ` azldev comp build --local-repo-with-publish ./base/out -p <a> -p <b> -q ` |
68- | Render many specs for check-in | ` azldev comp render -a ` |
68+ | Render all specs for check-in | ` azldev comp render -a ` |
6969| Render a single component | ` azldev comp render -p <name> ` |
7070| Prepare sources (apply overlays) | ` azldev comp prep-sources -p <name> --force -o <dir> -q ` |
7171| Prepare sources (skip overlays) | ` azldev comp prep-sources -p <name> --skip-overlays --force -o <dir> -q ` |
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ def _git_bytes(*args: str) -> bytes:
5252
5353
5454def _git_lines_z (* args : str ) -> list [str ]:
55- """Run a git command with -z-compatible args and return NUL -split lines."""
55+ """Run a git command with -z-compatible args and return NULL -split lines."""
5656 out = _git_bytes (* args )
5757 return [p .decode ("utf-8" ) for p in out .split (b"\x00 " ) if p ]
5858
You can’t perform that action at this time.
0 commit comments