Skip to content

Commit

Permalink
Removed duplicated setting (mockito#2091)
Browse files Browse the repository at this point in the history
There is no need of specifying --parallel explicitly as it is Gradle's default.
  • Loading branch information
shestee authored Nov 11, 2020
1 parent c596aef commit 3b09f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions check_reproducibility.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export SOURCE_DATE_EPOCH=$(date +%s)
function calculate_checksums() {
OUTPUT=checksums/$1

./gradlew --no-build-cache clean assemble --parallel
./gradlew --no-build-cache clean assemble

find ./build -name '*.jar' \
| grep '/build/libs/' \
Expand All @@ -23,4 +23,4 @@ function calculate_checksums() {
calculate_checksums checksums-1.txt
calculate_checksums checksums-2.txt

diff checksums/checksums-1.txt checksums/checksums-2.txt
diff checksums/checksums-1.txt checksums/checksums-2.txt

0 comments on commit 3b09f8e

Please sign in to comment.