mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
I've tried to find a better way to do this by conditionally including
the briar-android project in settings.gradle, but failed.
Please note that gradle needs to be installed to run the tests by
executing:
gradle test
5 lines
182 B
Bash
Executable File
5 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
sed -i "s@include ':briar-android'@//include ':briar-android'@" settings.gradle
|
|
gradle test
|
|
sed -i "s@//include ':briar-android'@include ':briar-android'@" settings.gradle
|