Skip to content

Commit 6e064b6

Browse files
authored
Merge pull request #198 from alex-feel/alex-feel-dev
Add consistent INFO messages for empty config sections
2 parents ecc9940 + bfb5426 commit 6e064b6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/setup_environment.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2047,6 +2047,7 @@ def set_all_os_env_variables(env_vars: dict[str, str | None]) -> bool:
20472047
def install_dependencies(dependencies: dict[str, list[str]] | None) -> bool:
20482048
"""Install dependencies from configuration."""
20492049
if not dependencies:
2050+
info('No dependencies to install')
20502051
return True
20512052

20522053
# Type annotation already ensures dependencies is a dict
@@ -2347,6 +2348,7 @@ def process_resources(
23472348
bool: True if all successful
23482349
"""
23492350
if not resources:
2351+
info(f'No {resource_type} to process')
23502352
return True
23512353

23522354
info(f'Processing {resource_type}...')
@@ -3018,6 +3020,7 @@ def configure_mcp_server(server: dict[str, Any]) -> bool:
30183020
def configure_all_mcp_servers(servers: list[dict[str, Any]]) -> bool:
30193021
"""Configure all MCP servers from configuration."""
30203022
if not servers:
3023+
info('No MCP servers to configure')
30213024
return True
30223025

30233026
info('Configuring MCP servers...')

0 commit comments

Comments
 (0)