From 084f049ba51bb0af35fecbb2d4bb03cdb61ee084 Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Wed, 9 Jun 2021 18:10:34 -0400 Subject: [PATCH] style: add spaces between multiply op --- shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.go b/shell.go index f710264..10b5791 100644 --- a/shell.go +++ b/shell.go @@ -149,7 +149,7 @@ func execCommand(cmd string) error { return interp.NewExitStatus(127) } - return interp.DefaultExecHandler(2*time.Second)(ctx, args) + return interp.DefaultExecHandler(2 * time.Second)(ctx, args) } runner, _ := interp.New( interp.StdIO(os.Stdin, os.Stdout, os.Stderr),