From 59aac38ce53dbc5ea9f0ed9f80a5c40f5bba2e02 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Mon, 14 Jul 2025 12:56:21 +1000 Subject: [PATCH] Update tools.func --- misc/tools.func | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/tools.func b/misc/tools.func index 9e52df8e7..936fbb1e0 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -1597,7 +1597,7 @@ function setup_yq() { fi msg_info "Setup yq ($LATEST_VERSION)" - curl -fsSL "https://github.com/${GITHUB_REPO}/releases/download/v${LATEST_VERSION}/yq_linux_amd64" -o "$TMP_DIR/yq" + curl -fsSL "https://github.com/${GITHUB_REPO}/releases/download/v${LATEST_VERSION}/yq_linux_arm64" -o "$TMP_DIR/yq" chmod +x "$TMP_DIR/yq" mv "$TMP_DIR/yq" "$BINARY_PATH" @@ -1718,7 +1718,7 @@ function setup_ffmpeg() { # Binary fallback mode if [[ "$TYPE" == "binary" ]]; then msg_info "Installing FFmpeg (static binary)" - curl -fsSL https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz -o "$TMP_DIR/ffmpeg.tar.xz" + curl -fsSL https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-arm64-static.tar.xz -o "$TMP_DIR/ffmpeg.tar.xz" tar -xf "$TMP_DIR/ffmpeg.tar.xz" -C "$TMP_DIR" local EXTRACTED_DIR EXTRACTED_DIR=$(find "$TMP_DIR" -maxdepth 1 -type d -name "ffmpeg-*")