From ab1869fbb0ca0308ce412ac17de5eb77cd38315b Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Wed, 26 Aug 2026 21:25:51 +0200 Subject: [PATCH] tools.func: recognize bare XZ-compressed tarballs in fetch_and_deploy* (#16796) --- misc/tools.func | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/tools.func b/misc/tools.func index bf1228e4f..eec09770f 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -9394,6 +9394,8 @@ fetch_and_deploy_from_url() { if [[ "$file_desc" =~ gzip.*compressed|gzip\ compressed\ data ]]; then archive_type="tar" + elif [[ "$file_desc" =~ XZ\ compressed\ data ]]; then + archive_type="tar" elif [[ "$file_desc" =~ Zip.*archive|ZIP\ archive ]]; then archive_type="zip" elif [[ "$file_desc" =~ Debian.*package|Debian\ binary\ package ]]; then