mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
Jakub Sokołowski
c27a74e378
This is most important on MacOS, but in general is a good idea. Resolves: https://github.com/status-im/status-mobile/issues/13715 Signed-off-by: Jakub Sokołowski <jakub@status.im>
13 lines
340 B
Bash
Executable File
13 lines
340 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -Eeu
|
|
|
|
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
|
|
# Gradle needs to be run in 'android' subfolder
|
|
cd "${GIT_ROOT}/android"
|
|
|
|
# Print all our sub-projects
|
|
./gradlew projects --no-daemon --console plain 2>&1 \
|
|
| grep "Project ':" \
|
|
| sed -E "s;^.--- Project '\:([@_a-zA-Z0-9\-]+)';\1;"
|