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