Skip to content

Commit

Permalink
add debug flag to debuggers
Browse files Browse the repository at this point in the history
  • Loading branch information
amenocal committed Dec 8, 2023
1 parent 3af115a commit 3e1d4c2
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,39 @@
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": ["-r", "actions/checkout" , "-v", "main"]
"args": ["-r", "actions/checkout" , "-v", "main", "--debug"]
},
{
"name": "Debug sending Major.Minor",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": ["-r", "actions/checkout" , "-v", "3.5"]
"args": ["-r", "actions/checkout" , "-v", "3.5", "--debug"]
},
{
"name": "Debug sending Major",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": ["-r", "actions/checkout" , "-v", "3"]
"args": ["-r", "actions/checkout" , "-v", "3", "--debug"]
},
{
"name": "Debug sending Major.Minor.Patch ",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": ["-r", "actions/checkout" , "-v", "3.5.3"]
"args": ["-r", "actions/checkout" , "-v", "3.5.3", "--debug"]
},
{
"name": "Debug sending Major.Minor.Patch ",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": ["workflows", "--debug"]
}
]
}

0 comments on commit 3e1d4c2

Please sign in to comment.