From 6151ebb2328cbdce3a37a9dcf0e499e13b4ebec0 Mon Sep 17 00:00:00 2001 From: Regalia <126194895+regalialong@users.noreply.github.com> Date: Wed, 26 Jun 2024 13:29:23 +0200 Subject: [PATCH] Defensively swap install-vrcx.sh to use curl (#828) --- Linux/install-vrcx.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Linux/install-vrcx.sh b/Linux/install-vrcx.sh index c2c9980c..0e7994e0 100644 --- a/Linux/install-vrcx.sh +++ b/Linux/install-vrcx.sh @@ -64,7 +64,7 @@ if [[ ! -d $WINEPREFIX/drive_c/vrcx ]]; then fi cd $WINEPREFIX/drive_c/vrcx -wget -q --show-progress $download_url -O vrcx.zip +curl -L $download_url -o vrcx.zip unzip -uq vrcx.zip rm vrcx.zip @@ -82,7 +82,7 @@ if [[ -d $HOME/.local/share/applications ]]; then if [[ ! -f $HOME/.local/share/icons/VRCX.png ]]; then echo "Install VRCX.png to ~/.local/share/icons" cd ~/.local/share/icons/ - wget -q --show-progress https://raw.githubusercontent.com/vrcx-team/VRCX/master/VRCX.png + curl -L https://raw.githubusercontent.com/vrcx-team/VRCX/master/VRCX.png -o VRCX.png fi echo "Install vrcx.desktop to ~/.local/share/applications"