fix: cmd sequence

This commit is contained in:
heidi.ngew 2022-12-22 10:45:13 -05:00
parent 92ad495ff7
commit e1194fff66
No known key found for this signature in database
GPG Key ID: 03C9B99A7BFFC435
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ func cleaninput(input string) string {
}
func open(input string) *exec.Cmd {
cmd := exec.Command("start", input, "/wait")
cmd := exec.Command("start", "/wait", input)
//cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
return cmd
}