Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-04-07 21:16:56 -07:00
parent a4e5ee76fb
commit c449abf906
1 changed files with 1 additions and 1 deletions

View File

@ -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
}