mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-05 05:03:23 +00:00
fix: throw command.exit with 0 code if input is nothing
This commit is contained in:
parent
38233ccda4
commit
9eabe5323d
5
main.go
5
main.go
@ -184,7 +184,10 @@ input:
|
|||||||
}
|
}
|
||||||
|
|
||||||
input = strings.TrimSpace(input)
|
input = strings.TrimSpace(input)
|
||||||
if len(input) == 0 { continue }
|
if len(input) == 0 {
|
||||||
|
hooks.Em.Emit("command.exit", 0)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if strings.HasSuffix(input, "\\") {
|
if strings.HasSuffix(input, "\\") {
|
||||||
for {
|
for {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user