From c9790cc99f08aeba9faf0af6d75314e63e6cf613 Mon Sep 17 00:00:00 2001 From: Jeff Davidson Date: Sat, 14 Sep 2024 21:05:05 -0700 Subject: [PATCH] Fix the build. The attempt to pin a specific version of the meteor tool never actually worked, which means the build broke once Meteor 3.0 was officially released. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0cf8746c5..0e5bc5f85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -69,7 +69,7 @@ RUN <<'EOF' set -eux set -o pipefail METEOR_RELEASE="$(sed -e 's/.*@//g' .meteor/release)" -curl -sL https://install.meteor.com?release=\$METEOR_RELEASE | sh +curl -sL "https://install.meteor.com?release=$METEOR_RELEASE" | sh EOF # Install meteor deps (list is sufficient to do this)