From e305643e670cc41da99d32a13ab49b097648e6a7 Mon Sep 17 00:00:00 2001 From: Fred Clausen <43556888+fredclausen@users.noreply.github.com> Date: Sat, 29 Jul 2023 13:09:29 -0600 Subject: [PATCH] use the proper mlat client --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bff96c6..9b66ba6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -170,8 +170,8 @@ RUN set -x && \ popd && \ dump1090 --version && \ # Build & install mlat-client - BRANCH_MLATCLIENT=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' 'https://github.com/mutability/mlat-client.git' | grep -v '\^' | cut -d '/' -f 3 | grep '^v.*' | tail -1) && \ - git clone --depth 1 --branch "$BRANCH_MLATCLIENT" "https://github.com/mutability/mlat-client.git" "/src/mlat-client" && \ + #BRANCH_MLATCLIENT=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' 'https://github.com/mutability/mlat-client.git' | grep -v '\^' | cut -d '/' -f 3 | grep '^v.*' | tail -1) && \ + git clone --depth 1 --branch master "https://github.com/wiedehopf/mlat-client.git" "/src/mlat-client" && \ pushd /src/mlat-client && \ BRANCH_MLATCLIENT="$(git tag --sort='-creatordate' | head -1)" && \ echo "mlat-client ${BRANCH_MLATCLIENT}" >> /VERSIONS && \