4
0
Fork 0
mirror of https://github.com/Anvilcraft/modpacktools synced 2024-05-19 11:54:20 +02:00

add >>> to shell

This commit is contained in:
LordMZTE 2020-07-29 14:19:56 +02:00
parent a212e03e59
commit 4cca46365f

View file

@ -18,6 +18,7 @@ object Shell : ICommand {
println("enter \'exit\' to exit the shell\n")
while(true) {
print(">>>")
val arg = readLine()!!.split(' ')
if(arg.getOrNull(0) == "exit")
break