Skip to content

Commit 7e415f1

Browse files
fix: Fix AUTOREST_PUGINS typo
1 parent 491fd15 commit 7e415f1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

diracx-testing/src/diracx/testing/client_generation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
AUTOREST_VERSION = "3.7.1"
2222
AUTOREST_CORE_VERSION = "3.10.4"
23-
AUTOREST_PUGINS = {
23+
AUTOREST_PLUGINS = {
2424
"@autorest/python": "6.34.2",
2525
"@autorest/modelerfour": "4.23.7",
2626
}
@@ -156,7 +156,7 @@ def regenerate_client(openapi_spec: Path, client_module: str):
156156
)
157157

158158
cmd = ["autorest", f"--version={AUTOREST_CORE_VERSION}"]
159-
for plugin, version in AUTOREST_PUGINS.items():
159+
for plugin, version in AUTOREST_PLUGINS.items():
160160
cmd.append(f"--use={plugin}@{version}")
161161
cmd += [
162162
"--python",

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"versioningTemplate": "npm",
4343
"datasourceTemplate": "npm",
4444
"matchStrings": [
45-
"AUTOREST_PUGINS\\s*=\\s*{[^}]*}",
45+
"AUTOREST_PLUGINS\\s*=\\s*{[^}]*}",
4646
"\\s*[\"'](?<depName>\\S+)[\"']:\\s*[\"'](?<currentValue>\\S+)[\"'],?"
4747
]
4848
}

0 commit comments

Comments
 (0)