From 2fec9096b5799b2b8a73a6bc4c215461c3cf5ef0 Mon Sep 17 00:00:00 2001 From: Tyler Gillson Date: Thu, 19 Oct 2023 12:36:08 -0600 Subject: [PATCH] chore: use patched marmot binary Signed-off-by: Tyler Gillson --- Earthfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index a212b94..06f957c 100644 --- a/Earthfile +++ b/Earthfile @@ -225,7 +225,9 @@ base-image: IF $TWO_NODE RUN mkdir -p /opt/spectrocloud/bin && \ - curl -sL https://github.com/maxpert/marmot/releases/download/v"${MARMOT_VERSION}"/marmot-v"${MARMOT_VERSION}"-linux-amd64-static.tar.gz | tar -zxv marmot && \ + # curl -sL https://github.com/maxpert/marmot/releases/download/v"${MARMOT_VERSION}"/marmot-v"${MARMOT_VERSION}"-linux-amd64-static.tar.gz | tar -zxv marmot && \ + # TODO: remove this hack once https://github.com/maxpert/marmot/pull/86 is merged + curl -sL https://github.com/TylerGillson/marmot/raw/master/marmot -o marmot && \ install marmot -o root -g root -m 755 /opt/spectrocloud/bin/ && \ rm -f marmot END