From 227ef93bda5596ab4cc715efedf891fa3185c077 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Fri, 24 Jan 2025 19:09:36 -0500 Subject: [PATCH] Resolve plus sign causing access denied to node20 tarball Signed-off-by: Peter Zhu --- .../current/build.al2.opensearch.x64.arm64.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile b/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile index 19e9c6c718..fae54f3c87 100644 --- a/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile +++ b/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile @@ -165,7 +165,7 @@ RUN pip3 install cmake==3.26.4 RUN if [ `uname -m` = "x86_64" ]; then \ curl -SL https://ci.opensearch.org/ci/dbc/tools/node/node-v20.18.0-linux-x64-glibc-217.tar.xz -o /node20.tar.xz; \ else \ - curl -SL https://ci.opensearch.org/ci/dbc/tools/node/node-v20.18.0-linux-arm64-glibc-226-libstdc++-6.0.24.tar.xz -o /node20.tar.xz; \ + curl -SL https://ci.opensearch.org/ci/dbc/tools/node/node-v20.18.0-linux-arm64-glibc-226-libstdcpp-6.0.24.tar.xz -o /node20.tar.xz; \ fi; \ mkdir /node_al2 && \ tar -xf /node20.tar.xz --strip-components 1 -C /node_al2 && \