-
Notifications
You must be signed in to change notification settings - Fork 66
Control+C does not work when reading batch spec as standard input #775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Hey @LawnGnome , I ran into this issue recently. I didn't know an issue had already being created for this, is it okay if I take this off your hands as I already have a fix for it? |
All yours, @BolajiOlajide! |
mrnugget
added a commit
that referenced
this issue
Jun 23, 2022
This is essentially a copy-paste implementation of the ideas presented in this comment here: golang/go#20280 (comment) It fixes #775 and helps with the issue described in #793 (comment). Not sure if it has unintended side-effects.
BolajiOlajide
pushed a commit
that referenced
this issue
Jul 7, 2022
This is essentially a copy-paste implementation of the ideas presented in this comment here: golang/go#20280 (comment) It fixes #775 and helps with the issue described in #793 (comment). Not sure if it has unintended side-effects.
BolajiOlajide
added a commit
that referenced
this issue
Jul 7, 2022
* Cancel reading from stdin on Ctrl-C This is essentially a copy-paste implementation of the ideas presented in this comment here: golang/go#20280 (comment) It fixes #775 and helps with the issue described in #793 (comment). Not sure if it has unintended side-effects. * Add comments and remove interface * update changelog Co-authored-by: BolajiOlajide <[email protected]>
scjohns
pushed a commit
that referenced
this issue
Apr 24, 2023
* Cancel reading from stdin on Ctrl-C This is essentially a copy-paste implementation of the ideas presented in this comment here: golang/go#20280 (comment) It fixes #775 and helps with the issue described in #793 (comment). Not sure if it has unintended side-effects. * Add comments and remove interface * update changelog Co-authored-by: BolajiOlajide <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A user is not able to exit with
ctrl+c
fromsrc-cli
when providing a batch spec as standard input.ctrl+d
does work for exiting the program.Steps
Run the following command,
src batch preview -f -
Try to exit the program with
ctrl+c
orctrl+x
.The text was updated successfully, but these errors were encountered: