mirror of
https://github.com/danbulant/discord.js
synced 2026-06-05 07:42:09 +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
|
||||
* @type {string[]}
|
||||
* @type {?string[]}
|
||||
*/
|
||||
this.execArgv = manager.execArgv || [];
|
||||
this.execArgv = manager.execArgv;
|
||||
|
||||
/**
|
||||
* Environment variables for the shard's process
|
||||
|
|
|
|||
Loading…
Reference in a new issue