Use same indentation for witness.gradle in AS and script.

This commit is contained in:
akwizgran
2023-09-29 12:05:19 +01:00
parent ea1c58110f
commit f683d4f3a9
13 changed files with 621 additions and 621 deletions

View File

@@ -22,5 +22,8 @@ done
for project in ${PROJECTS[@]}
do
echo "Calculating new checksums for ${project} ..."
./gradlew -q --configure-on-demand ${project}:calculateChecksums | grep -v '^\(Skipping\|Verifying\|Welcome to Gradle\)' > ${project}/witness.gradle
./gradlew -q --configure-on-demand ${project}:calculateChecksums \
| grep -v '^\(Skipping\|Verifying\|Welcome to Gradle\)' \
| sed "s/ /\t/g" \
> ${project}/witness.gradle
done