Skip to content

Commit 18e3dae

Browse files
committed
make module not required
1 parent 66e04a1 commit 18e3dae

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/kmcp/cmd/init_go.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ func init() {
3232
"",
3333
"The Go module name for the project (e.g., github.com/my-org/my-project)",
3434
)
35-
_ = initGoCmd.MarkFlagRequired("go-module-name")
3635
}
3736

3837
func runInitGo(_ *cobra.Command, args []string) error {

test/utils/utils.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ func Run(cmd *exec.Cmd) (string, error) {
5656
if err != nil {
5757
return string(output), fmt.Errorf("%s failed with error: (%v) %s", command, err, string(output))
5858
}
59+
_, _ = fmt.Fprintf(GinkgoWriter, "%s\n", output)
5960

6061
return string(output), nil
6162
}

0 commit comments

Comments
 (0)