vscode-bash-debug
vscode-bash-debug copied to clipboard
Stops on first command without breakpoint
Executables
Version of bash-debug: 0.3.9
Output of following commands (on windows, execute them in Command Prompt or PowerShell):
Bash: C:\Windows\System32\bash.exe
VSCode: 1.58.2
Debug output
{
"version": "0.2.0",
"configurations": [
{
"type": "bashdb",
"request": "launch",
"name": "Bash-Debug",
"program": "${file}"
}
]
}
Details
When run, the script will pause as if a breakpoint has been set at the first command, then it will continue when I hit debugging 'continue'. Running the script as "without debugging" will be the same result.
What I would expect to happen is the script to run completely without pause (if there are no breakpoints set).
https://github.com/rogalmic/vscode-bash-debug#limitations-and-known-problems
Currently debugger stops at first command