Closed
Description
It would be great to pause and wait for user input, for subsequent use in the script:
test:
cmds:
- read name
- echo "hi ${name}"
$ task test
read name
task: Failed to run task "test": exit status 127
I also tried moving the read
command to Taskvars, but still no luck. I suspect this is because execution of go-task does not allocate a TTY? Is there any way to do this currently?