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

View file

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