diff options
author | svidyuk <svidyuk@yandex-team.com> | 2024-06-22 01:35:32 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2024-06-22 01:45:21 +0300 |
commit | ec6419ce54cc774514785609c6fa060f73af4bd1 (patch) | |
tree | d643e2cc403881014147916b6e57c12eb6bdf92d | |
parent | 0315d1b8954957ef30b3f1a90a8db2b49bcd1a5a (diff) | |
download | ydb-ec6419ce54cc774514785609c6fa060f73af4bd1.tar.gz |
misprint fix
ddd4d305cb496481842eb41b78960bc48039315b
-rw-r--r-- | build/internal/scripts/link_sbom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/internal/scripts/link_sbom.py b/build/internal/scripts/link_sbom.py index 5084762d8a..fa366007f4 100644 --- a/build/internal/scripts/link_sbom.py +++ b/build/internal/scripts/link_sbom.py @@ -58,7 +58,7 @@ def main(): {'name': 'arcadia_module_subdir', 'value': args.mod_path} ] if vcs.get('DIRTY', '') == 'dirty': - res["properties"].append({'name': 'has_uncommited_changes', 'value': True}) + res["properties"].append({'name': 'has_uncommitted_changes', 'value': True}) json.dump(res, args.output) args.output.close() |