From c449abf90608dd19d9b92cba6ec8b2c9501fd17e Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 7 Apr 2019 21:16:56 -0700 Subject: [PATCH] typo Signed-off-by: Jeff Carr --- shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.go b/shell.go index 09c24c9..efa1794 100644 --- a/shell.go +++ b/shell.go @@ -18,7 +18,7 @@ func Script(cmds string) int { line = strings.TrimSpace(line) // this is like 'chomp' in perl fmt.Println("LINE:", line) time.Sleep(1) - shell(line) + Run(line) } return 0 }