v0.19.21: Fix #27
This commit is contained in:
parent
959ed59b2f
commit
9c7a6c6eec
|
@ -633,6 +633,9 @@ function parseCli(/*state*/) {
|
|||
return false;
|
||||
}
|
||||
if (argv[1]) {
|
||||
if (String(argv[1]) !== String(parseInt(argv[1], 10))) {
|
||||
argv[1] = path.resolve(argv[1]);
|
||||
}
|
||||
utils.putConfig(argv[0], argv.slice(1));
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "telebit",
|
||||
"version": "0.19.20",
|
||||
"version": "0.19.21",
|
||||
"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",
|
||||
"files": [
|
||||
|
|
Loading…
Reference in New Issue