From e97eebc18d726aa55738d7e19513491cf58a6e3a Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Thu, 8 Feb 2018 16:49:02 +0100 Subject: Avoid duplicate SDK install dir - SPEC-1252 - install sdk in a directory that includes a unique id (built from install url or path). SDKs are now install under: //// Signed-off-by: Sebastien Douheret --- .vscode/launch.json | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json index 3f4facb..7c3d99c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,7 @@ { "version": "0.2.0", - "configurations": [{ + "configurations": [ + { "name": "XDS-Server", "type": "go", "request": "launch", @@ -32,10 +33,21 @@ "showLog": false }, { - "type": "node", + "name": "Script SDK db-dump", + "type": "python", "request": "launch", - "name": "Script sdk list", - "program": "${workspaceFolder}/scripts/sdks/agl/list" + "stopOnEntry": true, + "pythonPath": "${config:python.pythonPath}", + "program": "${workspaceFolder}/scripts/sdks/agl/db-dump", + "args": [ + "-debug" + ], + "cwd": "${workspaceFolder}", + "env": {}, + "envFile": "${workspaceFolder}/.env", + "debugOptions": [ + "RedirectOutput" + ] } ] } -- cgit 1.2.3-korg