@@ -2479,7 +2479,7 @@ def can_simultaneously_activate(tool1, tool2):
2479
2479
2480
2480
2481
2481
# Expands dependencies for each tool, and removes ones that don't exist.
2482
- def process_tool_list (tools_to_activate , log_errors = True ):
2482
+ def process_tool_list (tools_to_activate ):
2483
2483
i = 0
2484
2484
# Gather dependencies for each tool
2485
2485
while i < len (tools_to_activate ):
@@ -2517,7 +2517,7 @@ def write_set_env_script(env_string):
2517
2517
# and other environment variables.
2518
2518
# Returns the full list of deduced tools that are now active.
2519
2519
def set_active_tools (tools_to_activate , permanently_activate , system ):
2520
- tools_to_activate = process_tool_list (tools_to_activate , log_errors = True )
2520
+ tools_to_activate = process_tool_list (tools_to_activate )
2521
2521
2522
2522
if tools_to_activate :
2523
2523
tools = [x for x in tools_to_activate if not x .is_sdk ]
@@ -3147,7 +3147,7 @@ def print_tools(t):
3147
3147
# Clean up old temp file up front, in case of failure later before we get
3148
3148
# to write out the new one.
3149
3149
tools_to_activate = currently_active_tools ()
3150
- tools_to_activate = process_tool_list (tools_to_activate , log_errors = True )
3150
+ tools_to_activate = process_tool_list (tools_to_activate )
3151
3151
env_string = construct_env (tools_to_activate , arg_system , arg_permanent )
3152
3152
if WINDOWS and not BASH :
3153
3153
write_set_env_script (env_string )
0 commit comments