2
2
ミラー元 https://git.coolaj86.com/coolaj86/telebit.js.git 前回の同期 2025-09-18 06:28:11 +00:00

end std input from tty

このコミットが含まれているのは:
AJ ONeal 2018-06-24 01:19:31 -06:00
コミット 3e9620ee90

ファイルの表示

@ -320,7 +320,7 @@ function askForConfig(answers, mainCb) {
if (!q) { if (!q) {
// https://github.com/nodejs/node/issues/21319 // https://github.com/nodejs/node/issues/21319
rl.close(); rl.close();
if (useTty) { stdin.close(); } if (useTty) { stdin.push(null); /*stdin.close();*/ }
mainCb(null, answers); mainCb(null, answers);
return; return;
} }