From e57dab8c3067582cf464b410aa763eb846c07efd Mon Sep 17 00:00:00 2001 From: manuel Date: Sun, 1 Sep 2024 14:27:54 +0300 Subject: [PATCH] [ckbcomp] added longer timeout for fetching the info about the package --- ckbcomp/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ckbcomp/PKGBUILD b/ckbcomp/PKGBUILD index c270de0b..66243ab4 100644 --- a/ckbcomp/PKGBUILD +++ b/ckbcomp/PKGBUILD @@ -10,7 +10,8 @@ _ckbcomp_preparations() { url="$site/installer-team/console-setup" - local data=$(curl --fail --silent --location --max-time 10 $url/-/tags) + local data + data=$(curl --fail --silent --location --max-time 60 $url/-/tags) || return 1 # this may be very slow local line="$(echo "$data" | grep -E -m1 "/console-setup-[0-9\.]+\.tar\.gz")" local dl="$site$(echo "$line" | sed -E -e 's|(.*\.tar\.gz).*|\1|' -e 's|.+(/installer.+)|\1|')"