vscode-bash-debug icon indicating copy to clipboard operation
vscode-bash-debug copied to clipboard

Stops on first command without breakpoint

Open cyraid opened this issue 3 years ago • 1 comments

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).

cyraid avatar Jul 16 '21 19:07 cyraid

https://github.com/rogalmic/vscode-bash-debug#limitations-and-known-problems

Currently debugger stops at first command

HankAviator avatar Dec 19 '21 11:12 HankAviator