From: Nick Porter Date: Mon, 23 Jan 2023 11:22:55 +0000 (+0000) Subject: Parameterise choice of raddb for debugging X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9f9b35984e028a0d692de7c618c894fbc031f97;p=thirdparty%2Ffreeradius-server.git Parameterise choice of raddb for debugging --- diff --git a/.vscode/launch.json b/.vscode/launch.json index 7dc07711719..b8946d83f1c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,7 +14,7 @@ "-D", "${workspaceFolder}/share/dictionary", "-d", - "${workspaceFolder}/raddb" + "${input:raddb}" ], "cwd": "${workspaceFolder}", "env": { @@ -32,7 +32,7 @@ "-D", "${workspaceFolder}/share/dictionary", "-d", - "${workspaceFolder}/raddb" + "${input:raddb}" ], "cwd": "${workspaceFolder}", "environment": [ @@ -188,6 +188,12 @@ } ], "inputs": [ + { + "id": "raddb", + "type": "promptString", + "description": "raddb path", + "default": "${workspaceFolder}/raddb" + }, { "id": "keyword", "type": "promptString",