Merge pull request #53 from Gloridea/master

fix unix socket is not working due to previous fix
This commit is contained in:
Brandon Nozaki Miller 2015-12-03 08:49:47 -08:00
commit 3c11bdaaff
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;