run: add missing params to curl

monorepo
Varun Patil 2023-10-20 14:53:06 -07:00
parent d678fda96e
commit d98d0b9522
1 changed files with 1 additions and 1 deletions

2
run.sh
View File

@ -27,7 +27,7 @@ URL="$HOST/index.php/apps/memories/static/go-vod?arch=$ARCH"
function fetch_binary {
while true; do
rm -f go-vod
curl -m 10 -s -o go-vod $URL
curl -L -k -f -m 10 -s -o go-vod $URL
if [[ $? == 0 ]]; then
chmod +x go-vod
echo "Fetched $URL successfully!"