summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-04-07 21:16:56 -0700
committerJeff Carr <[email protected]>2019-04-07 21:16:56 -0700
commitc449abf90608dd19d9b92cba6ec8b2c9501fd17e (patch)
tree894aa812779953d57523e8029bc93f94eb7d78f2 /shell.go
parenta4e5ee76fb977b877248f38326fc24332ef87388 (diff)
typo
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'shell.go')
-rw-r--r--shell.go2
1 files changed, 1 insertions, 1 deletions
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
}