From 3c555d9dd69233ac164e723816a05b959c599c4d Mon Sep 17 00:00:00 2001 From: Eduardo Date: Thu, 28 Mar 2024 19:11:03 +0100 Subject: [PATCH] fix launch json wildcalls are not suported --- .vscode/launch.json | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 2cbef34..7c5751a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,17 +1,18 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Launch", - "type": "go", - "request": "launch", - "mode": "auto", - "program": "${workspaceFolder}/*.go", - "env": {}, - "args": [] - }, - ] -} \ No newline at end of file + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch", + "type": "go", + "request": "launch", + "mode": "auto", + "cwd": "${workspaceFolder}", + "program": ".", + "env": {}, + "args": [] + } + ] +} -- 2.30.2