mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
Use same indentation for witness.gradle in AS and script.
This commit is contained in:
6
.idea/codeStyles/Project.xml
generated
6
.idea/codeStyles/Project.xml
generated
@@ -28,15 +28,11 @@
|
||||
<option name="JD_ALIGN_EXCEPTION_COMMENTS" value="false" />
|
||||
</JavaCodeStyleSettings>
|
||||
<JetCodeStyleSettings>
|
||||
<option name="PACKAGES_TO_USE_STAR_IMPORTS">
|
||||
<value />
|
||||
</option>
|
||||
<option name="NAME_COUNT_TO_USE_STAR_IMPORT" value="2147483647" />
|
||||
<option name="NAME_COUNT_TO_USE_STAR_IMPORT_FOR_MEMBERS" value="2147483647" />
|
||||
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
|
||||
</JetCodeStyleSettings>
|
||||
<codeStyleSettings language="Groovy">
|
||||
<indentOptions>
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="4" />
|
||||
<option name="USE_TAB_CHARACTER" value="true" />
|
||||
<option name="SMART_TABS" value="true" />
|
||||
</indentOptions>
|
||||
|
||||
@@ -48,7 +48,8 @@ buildscript {
|
||||
}
|
||||
}
|
||||
|
||||
if ((project.hasProperty("briar.mailbox_integration_tests") && project.property("briar.mailbox_integration_tests") == "true")
|
||||
if ((project.hasProperty("briar.mailbox_integration_tests")
|
||||
&& project.property("briar.mailbox_integration_tests") == "true")
|
||||
|| System.env.MAILBOX_INTEGRATION_TESTS) {
|
||||
configure([project(':mailbox-core'), project(':mailbox-lib')]) {
|
||||
apply from: "../gradle/variables.gradle"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user