mirror of
https://github.com/danbulant/discord.js
synced 2026-07-09 21:20:54 +00:00
fix(Shard): allow node to default to process.execArgv
This commit is contained in:
parent
92e2c3c7fd
commit
93f8c8547b
1 changed files with 2 additions and 2 deletions
|
|
@ -38,9 +38,9 @@ class Shard extends EventEmitter {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Arguments for the shard's process executable
|
* Arguments for the shard's process executable
|
||||||
* @type {string[]}
|
* @type {?string[]}
|
||||||
*/
|
*/
|
||||||
this.execArgv = manager.execArgv || [];
|
this.execArgv = manager.execArgv;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Environment variables for the shard's process
|
* Environment variables for the shard's process
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue