[GRADLE-3446] Console.readline() prompt text is overwritten by status line Created: 02/May/16 Updated: 17/Nov/16 Resolved: 17/Nov/16 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 2.13 |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | Sterling Greene | Assignee: | Unassigned |
Resolution: | Duplicate | Votes: | 6 |
Known Issue Of: |
Description |
I have a script that ask for user input using System.console().readline('label'). The label is printed on console and the user can type something. For example, when I run the following: def console = System.console() def firstname def lastname task run { doLast { firstname = console.readLine('> What is your first name?: ') lastname = console.readLine('> What is your last name?: ') } } I get that with 2.12:
And that with 2.13:
The first label (> What is your first name?) is not showing. |
Comments |
Comment by Ben McCann [ 15/Jul/16 ] |
I can confirm. I've been experiencing this issue as well |
Comment by Benjamin Muschko [ 15/Nov/16 ] |
As announced on the Gradle blog we are planning to completely migrate issues from JIRA to GitHub. We intend to prioritize issues that are actionable and impactful while working more closely with the community. Many of our JIRA issues are inactionable or irrelevant. We would like to request your help to ensure we can appropriately prioritize JIRA issues you’ve contributed to. Please confirm that you still advocate for your JIRA issue before December 10th, 2016 by:
We look forward to collaborating with you more closely on GitHub. Thank you for your contribution to Gradle! |
Comment by Eric Wendelin [ 17/Nov/16 ] |