diff --git a/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt b/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt index ff4a2d9e..7aeb0c65 100644 --- a/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt +++ b/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt @@ -64,7 +64,7 @@ class ArtifactFetcher @Inject constructor(@Assisted("url") val url: String, log(2, "Done downloading, renaming $tmpFile to $file") Files.move(tmpFile, file) log(1, " Downloaded $url") - log(2, " to $tmpFile") + log(2, " to $file") val localMd5 = Md5.toMd5(file.toFile()) if (remoteMd5 != null && remoteMd5 != localMd5) {