diff options
author | snermolaev <snermolaev@yandex-team.com> | 2023-10-20 10:36:05 +0300 |
---|---|---|
committer | snermolaev <snermolaev@yandex-team.com> | 2023-10-20 11:07:44 +0300 |
commit | 1b60734993537098f3f274084d6d8628a2f78e61 (patch) | |
tree | 948f1c4fd1f3219260a9803e57f477c507c4b4a1 /build/plugins | |
parent | b167b93e612d7a4f28f8ece777049f4c83a51758 (diff) | |
download | ydb-1b60734993537098f3f274084d6d8628a2f78e61.tar.gz |
force stable order of object files for devtools/ya/build/tests/fakeid test
Diffstat (limited to 'build/plugins')
-rw-r--r-- | build/plugins/res.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/plugins/res.py b/build/plugins/res.py index f2b1d970d1..3339ea8c0e 100644 --- a/build/plugins/res.py +++ b/build/plugins/res.py @@ -139,5 +139,5 @@ def on_ya_conf_json(unit, conf_file): formula, bottle_name, conf_file, '" or "'.join(valid_dirs) ) ) - for formula in formulas: + for formula in sorted(formulas): unit.onresource_files(formula) |