From cb831690985b35ba30abe5c8275ac6b45e9ca384 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Sat, 7 Dec 2024 14:27:29 +0300 Subject: [PATCH] fix CL: + test modified scripts with tar.gz source missed some of the changes --- plugins/python-build/bin/python-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 09878df1..16fe6285 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -558,7 +558,7 @@ download_tarball() { } has_tar_xz_support() { - tar Jcf - /dev/null 1>/dev/null 2>&1 + [[ -z $_PYTHON_BUILD_FORCE_SKIP_XZ ]] && tar Jcf - /dev/null 1>/dev/null 2>&1 } fetch_git() {