mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-12 15:24:18 +00:00
401b501aab
Fixes #277
12 lines
177 B
Bash
Executable File
12 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ -n "$REALM_BUILD_ANDROID" ]; then
|
|
rm -rf android
|
|
(cd react-native/android && ./gradlew publishAndroid)
|
|
fi
|