From e0a384f89b3432c66956fa503d1ea8cb3ef8abcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Miguel?= <36349314+vrmiguel@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:53:58 -0300 Subject: [PATCH] Try refreshing Cargo.lock (`time` regression failure) --- contrib/wrappers/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/wrappers/Dockerfile b/contrib/wrappers/Dockerfile index e4cd1028..c4aa8d4d 100644 --- a/contrib/wrappers/Dockerfile +++ b/contrib/wrappers/Dockerfile @@ -33,11 +33,11 @@ RUN /root/.cargo/bin/rustup default stable # Clone repository RUN git clone https://github.com/supabase/wrappers.git - ARG RELEASE=v0.3.1 # Build the extension RUN cd wrappers/wrappers && \ + rm Cargo.lock && \ git submodule update --init --recursive && \ git fetch origin ${RELEASE} && \ git checkout ${RELEASE} && \