fix unix socket is not working due to previous fix

This commit is contained in:
gloridea 2015-12-03 03:45:12 +09:00
parent b37f4dac42
commit 4d806f78dc
1 changed files with 3 additions and 1 deletions

View File

@ -47,8 +47,10 @@ function connect(){
if(!client.port){
client.log('Connecting client on Unix Socket :'.debug, client.path.variable);
var path = client.path;
if (process.platform ==='win32' && !client.path.startsWith('\\\\.\\pipe\\')){
var path = client.path;
path = path.replace(/^\//, '');
path = path.replace(/\//g, '-');
path= '\\\\.\\pipe\\'+path;