Version 2017.2.4

This commit is contained in:
Bart de Koning 2017-09-14 13:55:11 +02:00
parent 3d0725acf3
commit f0e2e856da
43 changed files with 265 additions and 286 deletions

View file

@ -0,0 +1,21 @@
#!/bin/bash
set -e
cd /opt/
## Extract the package
sudo tar xf /opt/ideaIC-*
## Rename the directory
sudo mv /opt/idea-IC-* /opt/intellij-idea-community
## Remove the tar.gz package
sudo rm /opt/ideaIC-*
## Install the .desktop file, if necessary
if [ -x "/usr/bin/desktop-file-install" ]; then
sudo desktop-file-install /usr/share/applications/intellij-idea-community.desktop
fi
##DEBHELPER##