mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-10 14:25:58 +00:00
14 lines
252 B
Bash
Executable File
14 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ -n "$SKIP_ANDROID_BUILD" -o -n "$XCODE_VERSION_ACTUAL" ]; then
|
|
echo 'Skipped building Android module'
|
|
else
|
|
rm -rf android
|
|
(cd react-native/android && ./gradlew publishAndroid)
|
|
fi
|