From 96288eb3ea4e216147a67c72fed68e6b8857be47 Mon Sep 17 00:00:00 2001 From: say Date: Mon, 15 Jul 2024 18:05:14 +0300 Subject: [PATCH] Bugfix: don't change global debug_options c4dd037e471709bdc6a6166d3e1b9ed7c67eac80 --- devtools/ya/build/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/ya/build/graph.py b/devtools/ya/build/graph.py index 45ec43026..f3be819b0 100644 --- a/devtools/ya/build/graph.py +++ b/devtools/ya/build/graph.py @@ -1693,7 +1693,7 @@ def _gen_opts( o['cache_info_file'] = self._local_cl_generator.path_to_current_hash o['cache_info_name'] = self._local_cl_generator.DEFAULT_HASH_FILE_NAME if o['patch_path'] is not None and 'completely-trust-fs-cache' not in o['debug_options']: - o['debug_options'].append('completely-trust-fs-cache') + o['debug_options'] += ['completely-trust-fs-cache'] else: o['patch_path'] = change_list