We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c4561 commit 6c3c4f3Copy full SHA for 6c3c4f3
ci/build.sh
@@ -1,7 +1,7 @@
1
#! /bin/bash
2
3
goal=
4
-if [ "$RDBMS" == "h2" ]; then
+if [ "$RDBMS" == "h2" ] || [ "$RDBMS" == "" ]; then
5
# This is the default.
6
goal="preVerifyRelease"
7
# Settings needed for `preVerifyRelease` execution - for asciidoctor doc rendering
@@ -77,6 +77,9 @@ elif [ "$RDBMS" == "altibase" ]; then
77
goal="-Pdb=altibase"
78
elif [ "$RDBMS" == "informix" ]; then
79
goal="-Pdb=informix"
80
+else
81
+ echo "Invalid value for RDBMS: $RDBMS"
82
+ exit 1
83
fi
84
85
function logAndExec() {
0 commit comments