diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-02-08 16:49:02 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-02-08 16:49:02 +0100 |
commit | e97eebc18d726aa55738d7e19513491cf58a6e3a (patch) | |
tree | 1e668dadc73cbe710cb1aaf059b43ef91defa01f /.vscode/launch.json | |
parent | 0a53346ecd92e1281587c724631fdf76dc756fc7 (diff) |
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:
<SDK_ROOT_DIR>/<PROFILE>/<VERSION>/<ARCH>/<UID>
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 20 |
1 files changed, 16 insertions, 4 deletions
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" + ] } ] } |