We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b163d commit dba2383Copy full SHA for dba2383
cmd/root.go
@@ -62,10 +62,10 @@ func runRoot(ctx context.Context) error {
62
63
c := exec.CommandContext(ctx, cc[0], cc[1:]...)
64
c.Dir = cwd
65
-
66
c.Stdin = os.Stdin
67
c.Stdout = os.Stdout
68
c.Stderr = os.Stderr
+
69
if err := c.Run(); err != nil {
70
return err
71
}
go.mod
@@ -2,8 +2,6 @@ module github.com/zeiss/ghc
2
3
go 1.23.0
4
5
-toolchain go1.23.4
6
7
require (
8
github.com/go-playground/validator/v10 v10.23.0
9
github.com/pkg/errors v0.9.1
0 commit comments