From: Eduardo Date: Thu, 28 Mar 2024 18:11:03 +0000 (+0100) Subject: fix launch json X-Git-Url: http://git.edufdez.es/?a=commitdiff_plain;h=3c555d9dd69233ac164e723816a05b959c599c4d;p=sylphiette-bot.git fix launch json wildcalls are not suported --- 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": [] + } + ] +}