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 83e6a3b commit 63e7143Copy full SHA for 63e7143
src/main/groovy/dev/jbang/gradle/Banner.groovy
@@ -67,7 +67,7 @@ abstract class Banner implements BuildService<Params> {
67
68
boolean printBanner = null == System.getProperty(ORG_KORDAMP_BANNER) || Boolean.getBoolean(ORG_KORDAMP_BANNER)
69
70
- File parent = new File(gradle.gradleUserHomeDir, 'caches')
+ File parent = new File(gradle.gradleUserHomeDir, '.tmp')
71
File markerFile = getMarkerFile(parent)
72
if (!markerFile.exists()) {
73
markerFile.parentFile.mkdirs()
@@ -105,4 +105,4 @@ abstract class Banner implements BuildService<Params> {
105
File.separator +
106
'marker.txt')
107
}
108
-}
+}
0 commit comments