diff --git a/Project.toml b/Project.toml index 95b6f66..841d305 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DataDeps" uuid = "124859b0-ceae-595e-8997-d05f6a7a8dfe" authors = ["Frames White "] -version = "0.7.10" +version = "0.7.11" [deps] HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" diff --git a/src/util.jl b/src/util.jl index b0adec4..3289a30 100644 --- a/src/util.jl +++ b/src/util.jl @@ -79,6 +79,7 @@ function input_choice(prompt, options::Vararg{Char})::Char for _ in 1:100 println(prompt) println("["*join(options, '/')*"]") + flush(stdout) # Ensure prompt has printed before we read input response = better_readline() length(response)==0 && continue reply = lowercase(first(response))