Merge pull request #197 from mkurz/debugFix

Ignore debug output when getting runtime jar path
This commit is contained in:
Dale Wijnand 2017-11-16 11:09:17 +00:00 committed by GitHub
commit efdc7c90ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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