1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-18 01:03:14 +00:00

added missing platform check for freebsd in findPath()

This commit is contained in:
Bryan Roe
2019-06-24 15:05:45 -07:00
parent ddff71dd79
commit 2c6f9780ee
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ limitations under the License.
var promise = require('promise');
if (process.platform == 'linux' || process.platform == 'darwin')
if (process.platform == 'linux' || process.platform == 'darwin' || process.platform == 'freebsd')
{
function findPath(app)
{