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 aa8904e commit 1385415Copy full SHA for 1385415
cars/v1/vanilla/config.ini
@@ -1,5 +1,8 @@
1
[variables]
2
-clean_command = ./gradlew --no-daemon clean
+# Gradle clean is preceded with removal of Lucene snapshot JAR files which
3
+# may change content/hash but not the filename which can fail the build. This
4
+# might be removed once Lucene produces archives in a reproducible way.
5
+clean_command = find ~/.gradle/caches -name 'lucene-*-snapshot-*.jar' -delete; ./gradlew --no-daemon clean
6
# deprecated
7
build_command = ./gradlew :distribution:archives:linux-tar:assemble
8
# new
0 commit comments