fix: panic on ctrl d on continued input

basically when a person did the continue prompt (input ending with `\`)
and exited with ctrl d it caused a panic
this was the simplest way to fix that
pull/61/head
sammyette 2021-06-11 17:58:35 -04:00
parent b3a28b067c
commit 72973eade7
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ func splitInput(input string) ([]string, string) {
quoted := false
startlastcmd := false
lastcmddone := false
cmdArgs := []string{}
cmdArgs := []string{""}
sb := &strings.Builder{}
cmdstr := &strings.Builder{}
lastcmd := "" //readline.GetHistory(readline.HistorySize() - 1)