From d4a736b30576b84b8797e987f7563a0240f98b1d Mon Sep 17 00:00:00 2001 From: Ian Stanton Date: Thu, 28 Dec 2023 13:15:44 -0500 Subject: [PATCH] Update env var --- contrib/auto_explain/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/auto_explain/Dockerfile b/contrib/auto_explain/Dockerfile index 487ab526..d7d87d77 100644 --- a/contrib/auto_explain/Dockerfile +++ b/contrib/auto_explain/Dockerfile @@ -18,11 +18,11 @@ RUN apt-get update && apt-get install -y \ # Clone repository RUN git clone https://github.com/postgres/postgres.git -ARG PG_RELEASE=REL_15_3 +ARG PG_RELEASE_VERSION=REL_15_3 RUN cd postgres && \ - git fetch origin ${PG_RELEASE} && \ - git checkout ${PG_RELEASE} && \ + git fetch origin ${PG_RELEASE_VERSION} && \ + git checkout ${PG_RELEASE_VERSION} && \ ./configure && \ cd contrib/auto_explain && \ make \ No newline at end of file