You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The install_path variable from the download.pp file can leads to a corrective actions at every run in some cases.
In our case we download the openjdk in tar.gz format from an URL and the folder created by the archive extraction has a different format the the format specified in the install_path variable:
The variable value should be: $install_path = "${java_se}-${release_major}.${release_minor}"
instead of: $install_path = "${java_se}${release_major}${release_minor}"
perhaps the variable should support other formats or be configurable ?