OS: OSX
Version: 2.6
When I run gradle
with org.gradle.daemon=true
in gradle.properties then it eats characters typed while it is run. I noticed this when I ran gradle clean
and then tried to run gradle build
immediately after that but because I’d started typing before gradle finished running all that made it to the console was dle build
.
This is reasonably easy to work around. Either disable the daemon or run all of your commands all run together like gradle clean && gradle build
or gradle clean build
. But it is so annoying!