mirror of
https://github.com/Ylianst/MeshAgent
synced 2025-12-18 09:13:14 +00:00
added missing platform check for freebsd in findPath()
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ limitations under the License.
|
|||||||
|
|
||||||
var promise = require('promise');
|
var promise = require('promise');
|
||||||
|
|
||||||
if (process.platform == 'linux' || process.platform == 'darwin')
|
if (process.platform == 'linux' || process.platform == 'darwin' || process.platform == 'freebsd')
|
||||||
{
|
{
|
||||||
function findPath(app)
|
function findPath(app)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user