We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65eb1ec commit 736325eCopy full SHA for 736325e
src/main/kotlin/com/coder/toolbox/cli/downloader/CoderDownloadService.kt
@@ -148,8 +148,9 @@ class CoderDownloadService(
148
while (source.read(buffer).also { bytesRead = it } != -1) {
149
sink.write(buffer, 0, bytesRead)
150
totalRead += bytesRead
151
+ val prettyBuildVersion = buildVersion ?: ""
152
showTextProgress(
- "$binaryName $buildVersion - ${totalRead.toHumanReadableSize()} downloaded"
153
+ "$binaryName $prettyBuildVersion - ${totalRead.toHumanReadableSize()} downloaded"
154
)
155
}
156
0 commit comments