1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-25 12:43:30 +00:00

Implemented enumerateService for MacOS

This commit is contained in:
Bryan Roe
2019-07-31 00:54:28 -07:00
parent 7a319f4302
commit 8ffac90514
2 changed files with 22 additions and 12 deletions

View File

@@ -1171,6 +1171,16 @@ function serviceManager()
}
break;
case 'darwin':
if (files[j].endsWith('.plist'))
{
try
{
results.push(fetchPlist(paths[i], files[j].split('.plist')[0]));
}
catch (e)
{
}
}
break;
}
}