From c12deec5894415ac6b8535af45ff3a532c1ba387 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Mon, 10 Jun 2024 09:27:01 -0400 Subject: [PATCH] chore: Use proper out directory for installer image --- Earthfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Earthfile b/Earthfile index e084b97..5c896dc 100644 --- a/Earthfile +++ b/Earthfile @@ -175,9 +175,9 @@ installer: ARG TARGETARCH IF [ "$TARGETARCH" = "arm64" ] - DO --pass-args +INSTALL --OUT_DIR="/usr/bin/" --BUILD_TARGET="aarch64-unknown-linux-musl" + DO --pass-args +INSTALL --OUT_DIR="/out/" --BUILD_TARGET="aarch64-unknown-linux-musl" ELSE - DO --pass-args +INSTALL --OUT_DIR="/usr/bin/" --BUILD_TARGET="x86_64-unknown-linux-musl" + DO --pass-args +INSTALL --OUT_DIR="/out/" --BUILD_TARGET="x86_64-unknown-linux-musl" END COPY install.sh /install.sh