From e031da6e70264dc2787f66e1760aced2081bff31 Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Sat, 26 Dec 2020 12:25:28 +0100 Subject: [PATCH] [build][dependencies] \r -> \n --- .../org/jetbrains/kotlin/konan/util/DependencyDownloader.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/shared/src/main/kotlin/org/jetbrains/kotlin/konan/util/DependencyDownloader.kt b/kotlin-native/shared/src/main/kotlin/org/jetbrains/kotlin/konan/util/DependencyDownloader.kt index 7b4dfd3d4d1..18cbb770a1e 100644 --- a/kotlin-native/shared/src/main/kotlin/org/jetbrains/kotlin/konan/util/DependencyDownloader.kt +++ b/kotlin-native/shared/src/main/kotlin/org/jetbrains/kotlin/konan/util/DependencyDownloader.kt @@ -33,7 +33,7 @@ class DependencyDownloader( ) { private val progressCallback = customProgressCallback ?: { url, currentBytes, totalBytes -> - print("\rDownloading dependency: $url (${currentBytes.humanReadable}/${totalBytes.humanReadable}). ") + print("\nDownloading dependency: $url (${currentBytes.humanReadable}/${totalBytes.humanReadable}). ") } val executor = ExecutorCompletionService(Executors.newSingleThreadExecutor(object : ThreadFactory {