From ffb87d646e41e999ee5cf335b85621c67b962b7b Mon Sep 17 00:00:00 2001 From: Trevor James Oluotch Date: Mon, 11 May 2026 12:15:25 +0100 Subject: [PATCH] wire standard input to standard input to cli --- cli/cli.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/cli.go b/cli/cli.go index 11ed22f..b948dba 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -11,6 +11,7 @@ import ( func ExecCommand(ctx context.Context, command string, wrkDir string) error { cmd := exec.Command("bash", "-c", command) + cmd.Stdin = os.Stdin cmd.Stderr = os.Stderr cmd.Stdout = os.Stdout