fix launch json
authorEduardo <[email protected]>
Thu, 28 Mar 2024 18:11:03 +0000 (19:11 +0100)
committerEduardo <[email protected]>
Thu, 28 Mar 2024 18:11:03 +0000 (19:11 +0100)
wildcalls are not suported

.vscode/launch.json

index 2cbef34f34264ca20f5afbb3cfeb9b20d7a1ce5e..7c5751a8433191b3f8d28d6635c8a0581a53d905 100644 (file)
@@ -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": []
+    }
+  ]
+}