intellij-idea-ultimate/intellij-idea-ultimate_2021.../debian/postinst

22 lines
412 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
cd /opt/
## Extract the package
2021-12-29 16:48:22 +01:00
tar xf /opt/ideaIU-2021.3.1.tar.gz
## Rename the directory
mv /opt/idea-IU-* /opt/intellij-idea-ultimate
## Remove the tar.gz package
2021-12-29 16:48:22 +01:00
rm /opt/ideaIU-2021.3.1.tar.gz
## Install the .desktop file, if necessary
if [ -x "/usr/bin/desktop-file-install" ]; then
desktop-file-install /usr/share/applications/intellij-idea-ultimate.desktop
fi
##DEBHELPER##