mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-21 07:00:38 +00:00
apply Vadim's suggestions
This commit is contained in:
@@ -779,9 +779,9 @@ RUN apt update && apt install -y zstd
|
||||
# Define extension build numbers
|
||||
# NOTE: it is *not* necessary for the build_tag to be BUILD_TAG. In particular,
|
||||
# you should update the build_tag for each extension only when you build it
|
||||
RUN echo "kq_imcx 5670669815" >> build_tags.txt
|
||||
RUN echo "anon 5670669815" >> build_tags.txt
|
||||
RUN echo "postgis 5670669815" >> build_tags.txt
|
||||
RUN echo "kq_imcx 5670669815" >> build_tags.txt && \
|
||||
echo "anon 5670669815" >> build_tags.txt && \
|
||||
echo "postgis 5670669815" >> build_tags.txt
|
||||
|
||||
# copy the control files here
|
||||
COPY --from=kq-imcx-pg-build /extensions/ /extensions/
|
||||
|
||||
@@ -47,7 +47,7 @@ if __name__ == "__main__":
|
||||
|
||||
build_tags = {}
|
||||
with open("build_tags.txt", "r") as f:
|
||||
for line in f.readlines():
|
||||
for line in f:
|
||||
ext, build_tag = line.strip().split(" ")
|
||||
build_tags[ext] = build_tag
|
||||
|
||||
|
||||
Reference in New Issue
Block a user