We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89d220c commit dfaae7eCopy full SHA for dfaae7e
1 file changed
ga/latest/kernel/helpers/build/infinispan-client-setup.sh
@@ -17,7 +17,7 @@
17
set -Eeo pipefail
18
19
INFINISPAN_CLIENT_VERSION=${INFINISPAN_CLIENT_VERSION:-10.1.3.Final}
20
-USE_LATEST_COMPATIBLE=${USE_LATEST_COMPATIBLE:-false}
+INFINISPAN_USE_LATEST_COMPATIBLE=${INFINISPAN_USE_LATEST_COMPATIBLE:-false}
21
22
pkgcmd=yum
23
if ! command $pkgcmd
@@ -47,7 +47,7 @@ cat << EOF > /opt/ibm/wlp/usr/shared/resources/infinispan/pom.xml
47
</project>
48
EOF
49
50
-if [ "${USE_LATEST_COMPATIBLE}" = "true" ]; then
+if [ "${INFINISPAN_USE_LATEST_COMPATIBLE}" = "true" ]; then
51
echo "Finding latest compatible Infinispan client version..."
52
mvn -f /opt/ibm/wlp/usr/shared/resources/infinispan/pom.xml versions:use-latest-releases -DallowMajorUpdates=false
53
fi
0 commit comments