From 98c5b711dc0ada63ab7d47f98144a3cddda0b997 Mon Sep 17 00:00:00 2001 From: Tim Felgentreff Date: Mon, 27 May 2024 10:50:03 +0200 Subject: [PATCH] fix http_get_aria to cat the correct file --- 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 c55648bb..923fcc62 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -397,7 +397,7 @@ http_get_aria2c() { fi if aria2c --allow-overwrite=true --no-conf=true -d "${dir_out}" -o "${out}" ${ARIA2_OPTS} "$1" >&4; then - [ -n "$2" ] || cat "${out}" + [ -n "$2" ] || cat "${dir_out:-.}/${out}" else false fi