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 {