From 42e10b8fde108131e598230819ca476747fe7345 Mon Sep 17 00:00:00 2001 From: Stephanie Date: Thu, 21 Sep 2023 22:17:03 -0400 Subject: [PATCH 1/2] add debugger lunch file Signed-off-by: Stephanie --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..94d440d1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "useApiV1": false, + "name": "Debug operator", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${workspaceFolder}", + "cwd": "${workspaceFolder}", + } + ] +} From bbdd326cf9c5786d9d39c0be3c7eb9a77353f924 Mon Sep 17 00:00:00 2001 From: Stephanie Date: Fri, 22 Sep 2023 10:22:36 -0400 Subject: [PATCH 2/2] update the name Signed-off-by: Stephanie --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 94d440d1..a4401cc9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,7 +3,7 @@ "configurations": [ { "useApiV1": false, - "name": "Debug operator", + "name": "Debug parser", "type": "go", "request": "launch", "mode": "auto",