13 lines
274 B
Bash
Executable file
13 lines
274 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
## Remove the program folder
|
|
sudo rm -rf /opt/intellij-idea-ultimate
|
|
|
|
## Automatically added by dh_icons
|
|
if which update-icon-caches >/dev/null 2>&1 ; then
|
|
update-icon-caches /usr/share/icons/intellij-idea-ue.png
|
|
fi
|
|
# End automatically added section
|
|
#
|