Skip to content

Commit 935965f

Browse files
committed
fix(script): Don't strip leading indentation
This was matching on vector-aggregator: ```yaml version: "2" ```
1 parent a92a6e0 commit 935965f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.scripts/update_helm_charts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def process_yaml_files(top_dir: str) -> None:
8686

8787
updated_lines = []
8888
for line in raw_lines:
89-
if line.strip().startswith("version:"):
89+
if line.startswith("version:"):
9090
new_line = f"version: {new_chart_version} # {new_app_version}\n"
9191
updated_lines.append(new_line)
9292
else:

0 commit comments

Comments
 (0)