blob: 38d840e4aa98ad53ff4cb323a963f7dc22b89dba (
plain)
1
2
3
4
5
6
7
8
|
post_install() {
printf "$(tput setaf 4)To run the application you need to have java11-openjfx.$(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
}
|