diff options
author | heretic <heretic@yandex-team.ru> | 2022-02-10 16:45:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:46 +0300 |
commit | 81eddc8c0b55990194e112b02d127b87d54164a9 (patch) | |
tree | 9142afc54d335ea52910662635b898e79e192e49 /build/plugins/bundle.py | |
parent | 397cbe258b9e064f49c4ca575279f02f39fef76e (diff) | |
download | ydb-81eddc8c0b55990194e112b02d127b87d54164a9.tar.gz |
Restoring authorship annotation for <heretic@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/plugins/bundle.py')
-rw-r--r-- | build/plugins/bundle.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/build/plugins/bundle.py b/build/plugins/bundle.py index 23a41353c69..0bec8254eec 100644 --- a/build/plugins/bundle.py +++ b/build/plugins/bundle.py @@ -10,13 +10,13 @@ def onbundle(unit, *args): It makes little sense to specify BUNDLE on non-final targets and so this may stop working without prior notice. Bundle on multimodule will select final target among multimodule variants and will fail if there are none or more than one. """ - i = 0 - while i < len(args): - if i + 2 < len(args) and args[i + 1] == "NAME": - target, name = args[i], args[i + 2] - i += 3 - else: - target, name = args[i], os.path.basename(args[i]) - i += 1 - + i = 0 + while i < len(args): + if i + 2 < len(args) and args[i + 1] == "NAME": + target, name = args[i], args[i + 2] + i += 3 + else: + target, name = args[i], os.path.basename(args[i]) + i += 1 + unit.on_bundle_target([target, name]) |