From 372acf6d4fd23c24c0adbc7b4904eff8ea21333f Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Thu, 28 Mar 2024 18:31:23 -0400 Subject: [PATCH] Intellij IDEA: correct invalid format wget command --- apps/Intellij IDEA/install-32 | 2 +- apps/Intellij IDEA/install-64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Intellij IDEA/install-32 b/apps/Intellij IDEA/install-32 index 8d2c2550a4..2993e2cb70 100755 --- a/apps/Intellij IDEA/install-32 +++ b/apps/Intellij IDEA/install-32 @@ -34,7 +34,7 @@ install_packages build-essential || exit 1 sudo rm -rf /opt/ideaIC /opt/ideaIC.tar.gz sudo mkdir /opt/ideaIC || error "Failed to make idea_ic folder!" -wget https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz /tmp/ideaIC.tar.gz || error "Failed to download!" +wget https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz -O /tmp/ideaIC.tar.gz || error "Failed to download!" cd /opt/ideaIC sudo tar xf /tmp/ideaIC.tar.gz --strip-components=1 || error "Failed to extract ideaIC.tar.gz!" diff --git a/apps/Intellij IDEA/install-64 b/apps/Intellij IDEA/install-64 index 5113d35ac1..75eece4711 100755 --- a/apps/Intellij IDEA/install-64 +++ b/apps/Intellij IDEA/install-64 @@ -35,7 +35,7 @@ install_packages build-essential || exit 1 sudo rm -rf /opt/ideaIC /opt/ideaIC.tar.gz sudo mkdir /opt/ideaIC || error "Failed to make idea_ic folder!" -wget https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz /tmp/ideaIC.tar.gz || error "Failed to download!" +wget https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz -O /tmp/ideaIC.tar.gz || error "Failed to download!" cd /opt/ideaIC sudo tar xf /tmp/ideaIC.tar.gz --strip-components=1 || error "Failed to extract ideaIC.tar.gz!"