Merge pull request #7397 from mkurz/uri_log_dependencyBrowseTree19x

This commit is contained in:
eugene yokota 2023-10-07 18:07:28 -04:00 committed by GitHub
commit de94f1c842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ object DependencyTreeSettings {
def openBrowser(uriKey: TaskKey[URI]) =
Def.task {
val uri = uriKey.value
streams.value.log.info("Opening in browser...")
streams.value.log.info(s"Opening ${uri} in browser...")
java.awt.Desktop.getDesktop.browse(uri)
uri
}