From dd4c71085de430e7fbe98b8a9c051dd50fe35553 Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 11 Mar 2026 18:06:06 +0000 Subject: [PATCH] fix(setup): skip apt for acarsdec, build from source directly (#183) acarsdec is not available in apt repos, so the apt_install attempt always failed with a confusing error message before falling through to the source build. Skip the apt attempt and go straight to compiling from source on Linux. Co-Authored-By: Claude Opus 4.6 --- setup.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index f32a0cd..5471b7e 100755 --- a/setup.sh +++ b/setup.sh @@ -1485,9 +1485,10 @@ install_tool_acarsdec() { fi else if ! cmd_exists acarsdec; then - apt_install acarsdec || true + install_acarsdec_from_source_debian + else + ok "acarsdec already installed" fi - cmd_exists acarsdec || install_acarsdec_from_source_debian fi }