Skip to content

Commit 4af3a02

Browse files
committed
message update
1 parent ed2cb46 commit 4af3a02

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests-neptune-api-codegen.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ jobs:
3939
cd src &&
4040
python -m neptune_api_codegen.cli --no-update-api-spec --update &&
4141
pre-commit run --all-files &&
42-
[ -z "$(git status --porcelain)" ]
42+
[ -z "$(git status --porcelain)" ] &&
43+
echo "✅ Repository is clean after regenerating neptune_api code"

src/neptune_api_codegen/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def main() -> None:
191191
verbose=args.verbose,
192192
)
193193
else:
194-
print_err(f"Using proto directories and swagger from: {rel(target_apispec)}")
194+
print_err(f"Using proto directories and swagger files from: {rel(target_apispec)}")
195195
shutil.copytree(target_apispec, apispec_dir, dirs_exist_ok=True)
196196

197197
print_err(f"Generating OpenAPI clients in: {rel(generated_py_dir)}")

0 commit comments

Comments
 (0)