From 64b51c31a7f7080b88d657f53ad3b1bf93f5d9e4 Mon Sep 17 00:00:00 2001 From: djarbz <30350993+djarbz@users.noreply.github.com> Date: Fri, 18 Oct 2024 22:30:07 -0500 Subject: [PATCH] Quiet Curl Limits unneeded curl output --- kasmvnc/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kasmvnc/run.sh b/kasmvnc/run.sh index 15056a8..13d89d1 100644 --- a/kasmvnc/run.sh +++ b/kasmvnc/run.sh @@ -19,7 +19,7 @@ download_file() { if command -v wget &> /dev/null; then wget $url -O $output elif command -v curl &> /dev/null; then - curl -L $url -o $output + curl -fsSL $url -o $output elif command -v busybox &> /dev/null; then busybox wget -O $output $url else