Merge pull request #6305 from etspaceman/patch-2

Fix SBT Warn on slow HostName
This commit is contained in:
eugene yokota 2021-02-12 17:20:07 -05:00 committed by GitHub
commit e80df26e7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class JUnitXmlTestsListener(val outputDir: String, legacyTestReport: Boolean, lo
logger.warn(
s"Getting the hostname $name was slow (${elapsed / 1.0e6} ms). " +
"This is likely because the computer's hostname is not set. You can set the " +
"hostname with the command: scutil --set HostName $(scutil --get LocalHostName)."
"""hostname with the command: scutil --set HostName "$(scutil --get LocalHostName).local"."""
)
}
name