Skip to content

Commit 5371d10

Browse files
committed
edits
1 parent 116e576 commit 5371d10

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

eng/emitter-diff/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ By default the tool writes a **clickable HTML report** (`emitter-diff.html`) int
5757
prints a `file://` link to it. Use `--html` to write to a specific file.
5858

5959
- `--name <pattern>`: Filter which specs/packages are generated.
60+
- `--ci`: Disable baseline-output cache (intended for CI workflows).
6061
- `--html <file>`: Write the rendered HTML report to this path (default: `<work-dir>/emitter-diff.html`).
6162
- `--generated-code-path <path>`: Override the adapter generated-code subpath under each side output root.
6263
For Python, generated files land under `<side>/<path>/tests/generated/...`.

eng/emitter-diff/src/resolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ function repoPathKey(repo: string): string {
303303
return repo.replace(/[^a-z0-9._-]/gi, "-").toLowerCase();
304304
}
305305

306-
/** Create a fresh scratch dir under the OS temp dir when `--work-dir` is omitted. */
306+
/** Create a fresh scratch dir under the OS temp dir for each run. */
307307
export function defaultWorkDir(): string {
308308
return mkdtempSync(join(tmpdir(), "emitter-diff-"));
309309
}

packages/http-client-python/generator/pygen/codegen/templates/init.py.jinja2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{% import 'keywords.jinja2' as keywords %}
22
# coding=utf-8
3-
# DEMO: emitter-diff sample change — revert before merge.
43
{% if code_model.license_header %}
54
{{ code_model.license_header }}
65
{% endif %}

0 commit comments

Comments
 (0)