We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b10b4ef commit b0fecd2Copy full SHA for b0fecd2
1 file changed
cmd/src/mcp.go
@@ -5,6 +5,7 @@ import (
5
"encoding/json"
6
"flag"
7
"fmt"
8
+ "os"
9
"strings"
10
11
"github.com/sourcegraph/src-cli/internal/api"
@@ -22,7 +23,7 @@ func init() {
22
23
})
24
}
25
func mcpMain(args []string) error {
- fmt.Println("NOTE: This command is still experimental")
26
+ fmt.Fprintln(os.Stderr, "NOTE: This command is still experimental")
27
apiClient := cfg.apiClient(nil, mcpFlagSet.Output())
28
29
ctx := context.Background()
0 commit comments