Skip to content

Commit

Permalink
Intellij IDEA: correct invalid format wget command
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman committed Mar 28, 2024
1 parent 412fd4a commit 372acf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/Intellij IDEA/install-32
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down
2 changes: 1 addition & 1 deletion apps/Intellij IDEA/install-64
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down

0 comments on commit 372acf6

Please sign in to comment.