Minor: dereference archiveFile when logging it

Previously it was "Plugin artifacts packed to task ':zipPlugin' property 'archiveFile'"
After fix it's    "Plugin artifacts packed to /home/bobko/jb/kotlin/build/kotlin-plugin.zip"

`archiveFile` has type `Provider<RegularFile>`
This commit is contained in:
Nikita Bobko
2020-09-14 21:29:52 +03:00
parent c64c319231
commit 0b2d05ee30
+1 -1
View File
@@ -961,7 +961,7 @@ val zipPlugin by task<Zip> {
setExecutablePermissions() setExecutablePermissions()
doLast { doLast {
logger.lifecycle("Plugin artifacts packed to $archiveFile") logger.lifecycle("Plugin artifacts packed to ${archiveFile.get()}")
} }
} }