From 664fb748676518d6e8f245be075cdab2a8e24ba9 Mon Sep 17 00:00:00 2001 From: Tommy Hyeonwoo Kim Date: Tue, 21 Feb 2023 19:47:26 +0900 Subject: [PATCH] fix typo --- pkg/cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/cmd.go b/pkg/cmd/cmd.go index bdadf7d..b023fba 100644 --- a/pkg/cmd/cmd.go +++ b/pkg/cmd/cmd.go @@ -50,7 +50,7 @@ func (r *Runner) Run(ctx context.Context, cwd string, env []string, command stri return runWithStdin(ctx, r.log.WithCallDepth(2), cwd, env, "", command, args...) } -// RunWithStdin runs given command with stardart input +// RunWithStdin runs given command with standard input func (r *Runner) RunWithStdin(ctx context.Context, cwd string, env []string, stdin, command string, args ...string) (string, error) { // call depth = 2 to erase the runWithStdin frame and this one return runWithStdin(ctx, r.log.WithCallDepth(2), cwd, env, stdin, command, args...)