v0.19.24: bugfix windows https://github.com/nodejs/node/issues/21771
This commit is contained in:
parent
7f3df579ac
commit
4b22e7675e
|
@ -100,8 +100,9 @@ function askForConfig(state, mainCb) {
|
||||||
var rl = readline.createInterface({
|
var rl = readline.createInterface({
|
||||||
input: stdin
|
input: stdin
|
||||||
, output: process.stdout
|
, output: process.stdout
|
||||||
|
// https://github.com/nodejs/node/issues/21771
|
||||||
// https://github.com/nodejs/node/issues/21319
|
// https://github.com/nodejs/node/issues/21319
|
||||||
, terminal: !useTty
|
, terminal: !/^win/i.test(os.platform()) && !useTty
|
||||||
});
|
});
|
||||||
state._useTty = useTty;
|
state._useTty = useTty;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "telebit",
|
"name": "telebit",
|
||||||
"version": "0.19.23",
|
"version": "0.19.24",
|
||||||
"description": "Break out of localhost. Connect to any device from anywhere over any tcp port or securely in a browser. A secure tunnel. A poor man's reverse VPN.",
|
"description": "Break out of localhost. Connect to any device from anywhere over any tcp port or securely in a browser. A secure tunnel. A poor man's reverse VPN.",
|
||||||
"main": "lib/remote.js",
|
"main": "lib/remote.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
|
Loading…
Reference in New Issue