I noticed this when using `Debugger` when stepping through the `deploydocs` function from [here](https://github.com/JuliaStats/GLM.jl/blob/master/docs/make.jl), but there is some strange behaviour here: 1. (picture 1) debugger is at line 235, and deploy_decision.all_ok is false so the entire if block should be skipped <img width="772" alt="Image" src="https://github.com/user-attachments/assets/fa22a7ab-f056-43cf-ab04-b79864305180" /> 3. (picture 2) but when I click "next" the debugger jumps to line 252 which is inside the if block which must be skipped <img width="767" alt="Image" src="https://github.com/user-attachments/assets/98b05a4b-6185-4d01-b662-b05b5a01bc8d" /> 4. when i click next again it (correctly) exits the function Julia version: ```julia-repl julia> VERSION v"1.11.4" ``` Debugger version: ```julia-repl (@v1.11) pkg> st Debugger Status `~/.julia/environments/v1.11/Project.toml` [31a5f54b] Debugger v0.7.10 ```