Skip to content

Commit 1385415

Browse files
authored
Cleanup Lucene snapshot JAR files (#88)
1 parent aa8904e commit 1385415

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cars/v1/vanilla/config.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[variables]
2-
clean_command = ./gradlew --no-daemon clean
2+
# 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
36
# deprecated
47
build_command = ./gradlew :distribution:archives:linux-tar:assemble
58
# new

0 commit comments

Comments
 (0)