Skip to content

Commit 88e21c4

Browse files
committed
change raise to warning to unblock test on linux
1 parent c5a331b commit 88e21c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mcpm/clients/managers/trae.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ def __init__(self, config_path=None):
3636
self.config_path = os.path.join(os.environ.get("APPDATA", ""), "Trae", "User", "mcp.json")
3737
else:
3838
# Linux
39-
raise NotImplementedError("Trae on Linux is not supported yet")
39+
self.config_path = os.path.expanduser("~/.config/trae/mcp.json")
40+
logger.warning("Trae is not supported on Linux yet.")
4041

4142
def _get_empty_config(self) -> Dict[str, Any]:
4243
"""Get empty config structure for Trae"""

0 commit comments

Comments
 (0)