1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-20 02:03:15 +00:00

1. Added documentation for IPC Mode Self Test

2. Added IPC path check for linux
This commit is contained in:
Bryan Roe
2022-06-03 12:06:58 -07:00
parent 5b4dbf2562
commit 2bcc309437
2 changed files with 31 additions and 2 deletions

View File

@@ -234,7 +234,9 @@ function start()
}
else
{
ipcPath = svc.appWorkingDirectory() + 'DAIPC';
ipcPath = svc.appWorkingDirectory();
if (ipcPath.endsWith('/')) { ipcPath += 'DAIPC'; }
else { ipcPath += '/DAIPC'; }
}
}