2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-01 11:13:24 +00:00

fix: set cmdString after prompting for continue input

makes sure that the old + new input is actually used for
builtin runners
This commit is contained in:
TorchedSammy 2022-09-17 20:28:52 -04:00
parent 8f41005da7
commit 8647dc57a1
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -130,7 +130,7 @@ func runInput(input string, priv bool) {
}
if cont {
input, err = reprompt(input)
cmdString, err = reprompt(input)
if err == nil {
goto rerun
} else if err == io.EOF {