Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

fix(kasmVNC): fix debian installation and improve logging #326

Merged
merged 4 commits into from
Oct 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Quiet Curl
Limits unneeded curl output
  • Loading branch information
djarbz authored Oct 19, 2024
commit 64b51c31a7f7080b88d657f53ad3b1bf93f5d9e4
2 changes: 1 addition & 1 deletion kasmvnc/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down