Fix for: TypeError: The "config.options.port" property must be o… (#211)
Fix for: TypeError: The "config.options.port" property must be of type number.
This commit is contained in:
commit
1b30e9d76c
@ -293,7 +293,7 @@ async function GetUtilParametersByInquirer() {
|
||||
}
|
||||
])) as any).schema;
|
||||
}
|
||||
connectionOptions.port = answ.port;
|
||||
connectionOptions.port = parseInt(answ.port, 10);
|
||||
connectionOptions.host = answ.host;
|
||||
connectionOptions.user = answ.login;
|
||||
connectionOptions.password = answ.password;
|
||||
|
Loading…
Reference in New Issue
Block a user