aboutsummaryrefslogtreecommitdiffstats
path: root/fetch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fetch.sh')
-rw-r--r--fetch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetch.sh b/fetch.sh
index dd6ed4d..9730f2e 100644
--- a/fetch.sh
+++ b/fetch.sh
@@ -12,7 +12,7 @@ while read -r distro package version _; do
VERSION="$version"
break
fi
-done < <(curl -A "$USER_AGENT" -LSs https://build.wireguard.com/distros.txt)
+done < <(curl -A "$USER_AGENT" -LSs --connect-timeout 30 https://build.wireguard.com/distros.txt)
[[ -n $VERSION ]]
@@ -23,6 +23,6 @@ fi
rm -rf net/wireguard
mkdir -p net/wireguard
-curl -A "$USER_AGENT" -LsS "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-$VERSION.tar.xz" | tar -C "net/wireguard" -xJf - --strip-components=2 "WireGuard-$VERSION/src"
+curl -A "$USER_AGENT" -LsS --connect-timeout 30 "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-$VERSION.tar.xz" | tar -C "net/wireguard" -xJf - --strip-components=2 "WireGuard-$VERSION/src"
sed -i 's/tristate/bool/;s/default m/default y/;' net/wireguard/Kconfig
touch net/wireguard/.check