chore: clean up launch.json to not pass in working-dir and use cwd

This commit is contained in:
Ryan Dowling 2019-06-16 18:11:56 +10:00
parent 51a3d24b8a
commit 617309eaef
No known key found for this signature in database
GPG key ID: 5539FCDB88950EFD

3
.vscode/launch.json vendored
View file

@ -7,7 +7,8 @@
"request": "launch",
"mainClass": "com.atlauncher.App",
"projectName": "ATLauncher",
"args": "--debug --debug-level 3 --working-dir=test"
"cwd": "${workspaceFolder}/test",
"args": "--debug --debug-level 3"
}
]
}