Ignore debug output when getting runtime jar path

This commit is contained in:
Matthias Kurz 2017-11-15 11:55:12 +01:00
parent 320d993fa6
commit 006a5eee23
No known key found for this signature in database
GPG Key ID: 0B4AAA92F1117EF5
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ copyRt() {
if [[ "$at_least_9" == "1" ]]; then
rtexport=$(rt_export_file)
java9_ext=$("$java_cmd" ${JAVA_OPTS} ${SBT_OPTS:-$default_sbt_opts} ${java_args[@]} \
-jar "$rtexport" --rt-ext-dir)
-jar "$rtexport" --rt-ext-dir | grep -v Listening)
java9_rt=$(echo "$java9_ext/rt.jar")
vlog "[copyRt] java9_rt = '$java9_rt'"
if [[ ! -f "$java9_rt" ]]; then