Fixed "Full Offline Dev" launch config

Each flag needs to be a separate entry in the args array.
This commit is contained in:
Fabien "egg" O'Carroll 2023-06-28 22:16:29 +01:00 committed by Fabien 'egg' O'Carroll
parent 9771e1f5c1
commit 283cae9a59

3
.vscode/launch.json vendored
View File

@ -28,7 +28,8 @@
],
"program": "${workspaceFolder}/.github/dev.js",
"args": [
"--all --offline"
"--all",
"--offline"
],
"autoAttachChildProcesses": true,
"outputCapture": "std",