mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Fixed log.
This commit is contained in:
parent
9f76eeabdc
commit
12ad7fc3ab
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class ArtifactFetcher @Inject constructor(@Assisted("url") val url: String,
|
||||||
log(2, "Done downloading, renaming $tmpFile to $file")
|
log(2, "Done downloading, renaming $tmpFile to $file")
|
||||||
Files.move(tmpFile, file)
|
Files.move(tmpFile, file)
|
||||||
log(1, " Downloaded $url")
|
log(1, " Downloaded $url")
|
||||||
log(2, " to $tmpFile")
|
log(2, " to $file")
|
||||||
|
|
||||||
val localMd5 = Md5.toMd5(file.toFile())
|
val localMd5 = Md5.toMd5(file.toFile())
|
||||||
if (remoteMd5 != null && remoteMd5 != localMd5) {
|
if (remoteMd5 != null && remoteMd5 != localMd5) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue