Skip to content

Commit bcbaf56

Browse files
committed
Remove redundant "bytes" from log
1 parent 44ad92b commit bcbaf56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ export class Storage {
275275
throw new Error("User aborted download")
276276
}
277277

278-
this.output.appendLine(`Downloaded ${prettyBytes(written)} bytes to ${path.basename(tempFile)}`)
278+
this.output.appendLine(`Downloaded ${prettyBytes(written)} to ${path.basename(tempFile)}`)
279279

280280
// Move the old binary to a backup location first, just in case. And,
281281
// on Linux at least, you cannot write onto a binary that is in use so

0 commit comments

Comments
 (0)