Github user terbolous commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/238#discussion_r30280222 --- Diff: packaging/package.sh --- @@ -48,6 +48,13 @@ function packaging() { fi DISTRO=$3 + + JDK=$(rpm -qa | grep "java-1...0-openjdk-devel") + for version in $JDK; do [ "${version:7:1}" -ge "7" ] && echo ${version:7:1}; done; + if [ "$?" -gt "0" ] || [ -z "$JDK" ] ; then --- End diff -- My previous comment is most likely related to this. If the last grep line doesn't match -ge 7, it'll fail
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---