From e8bf9da2706daaec7c76db981ae333d2099e62d9 Mon Sep 17 00:00:00 2001 From: killianmuldoon Date: Thu, 9 Nov 2023 15:05:54 +0000 Subject: [PATCH] Fix delve version in Tiltfile Signed-off-by: killianmuldoon --- Tiltfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tiltfile b/Tiltfile index e382429aaaef..b87d77d21293 100644 --- a/Tiltfile +++ b/Tiltfile @@ -166,8 +166,9 @@ def load_provider_tiltfiles(): tilt_helper_dockerfile_header = """ # Tilt image FROM golang:1.20.11 as tilt-helper +# Install delve. Note this should be kept in step with the Go release minor version. +RUN go install github.com/go-delve/delve/cmd/dlv@v1.20 # Support live reloading with Tilt -RUN go install github.com/go-delve/delve/cmd/dlv@v1.9.1 RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/restart.sh && \ wget --output-document /start.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/start.sh && \ chmod +x /start.sh && chmod +x /restart.sh && chmod +x /go/bin/dlv && \