File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
crates/terminator-cli/src Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -629,10 +629,11 @@ fn sync_nodejs_bindings(version: &str) {
629629}
630630
631631fn sync_mcp_agent ( version : & str ) {
632- println ! ( "📦 Syncing MCP agent..." ) ;
632+ println ! ( "📦 Syncing MCP agent to version {version} ..." ) ;
633633
634634 let mcp_dir = Path :: new ( "crates/terminator-mcp-agent" ) ;
635635 if !mcp_dir. exists ( ) {
636+ println ! ( "⚠️ MCP agent directory not found, skipping" ) ;
636637 return ;
637638 }
638639
@@ -641,6 +642,7 @@ fn sync_mcp_agent(version: &str) {
641642 eprintln ! ( "⚠️ Warning: Failed to update MCP agent package.json: {e}" ) ;
642643 return ;
643644 }
645+ println ! ( "✅ Updated MCP agent package.json to {version}" ) ;
644646
645647 // Update platform packages
646648 let npm_dir = mcp_dir. join ( "npm" ) ;
You can’t perform that action at this time.
0 commit comments