From d58602183131fc4a80bc19bac5d58d20674cefc7 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Mon, 28 Oct 2024 15:42:28 -0700 Subject: [PATCH] Make sure debugpy and dlv are correctly installed by helper --- install-helpers.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install-helpers.py b/install-helpers.py index fe97612..785a6a5 100755 --- a/install-helpers.py +++ b/install-helpers.py @@ -197,7 +197,9 @@ def install_fixers(langs: set[Language]): def install_debuggers(langs): if Language.PYTHON in langs: - maybe_pip_install("debugpy", library=True) + maybe_pip_install("debugpy") + if Language.GO in langs: + maybe_run("go", "install", "github.com/go-delve/delve/cmd/dlv@latest") def main():