mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug Fix - #213
- Fixed bug that ignored the fact that std:cin was closed by a Ctrl-D in the "shell" command. Thanks to Ian Mortimer.
This commit is contained in:
parent
c5809b6b8d
commit
9100217da0
2 changed files with 2 additions and 1 deletions
|
@ -1163,7 +1163,7 @@ void handleShell ()
|
|||
}
|
||||
}
|
||||
}
|
||||
while (keepGoing);
|
||||
while (keepGoing && !std::cin.eof ());
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue