blob: a2d391617e5cb8ec691941a8c7278b7f477265bd (
plain)
1
2
3
4
5
6
7
8
|
post_install() {
printf "$(tput setaf 4)To run the application you need to have java8-openjfx or java11-openjfx depending on the JDK version you will be using.$(tput sgr0)\n"
printf "$(tput setaf 4)You will need to set JAVA_HOME or run this package for the first time from the console to set the jdk path.$(tput sgr0)\n"
}
post_upgrade() {
post_install
}
|