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 c71db43 commit bf85974Copy full SHA for bf85974
resource-managers/kubernetes/integration-tests/dev/dev-run-integration-tests.sh
@@ -29,7 +29,12 @@ SERVICE_ACCOUNT=
29
CONTEXT=
30
INCLUDE_TAGS="k8s"
31
EXCLUDE_TAGS=
32
-SCALA_VERSION="$($TEST_ROOT_DIR/build/mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=scala.binary.version | grep -v '\[' )"
+MVN="$TEST_ROOT_DIR/build/mvn"
33
+
34
+SCALA_VERSION=$("$MVN" help:evaluate -Dexpression=scala.binary.version 2>/dev/null\
35
+ | grep -v "INFO"\
36
+ | grep -v "WARNING"\
37
+ | tail -n 1)
38
39
# Parse arguments
40
while (( "$#" )); do
0 commit comments