We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d79d93c commit be77ff7Copy full SHA for be77ff7
1 file changed
gui/electron/main/cli.ts
@@ -8,7 +8,9 @@ program
8
'--skip-server-if-running',
9
'gui will not launch the server if it is already running'
10
)
11
- .allowUnknownOption();
+ .allowUnknownOption()
12
+ // Allow passing arguments to Electron.
13
+ .allowExcessArguments();
14
15
if (process.platform === "linux") {
16
const noUdevOption = new Option('--no-udev', 'disable udev warning');
0 commit comments