/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.4.2
shared/react-native/buildAndroid.sh
12 строк
353 B
John Zila
[Y2K-451] Push prompt tweaks (#19011)
23 авг 2019, 00:14
Не верифицирован
23 авг 2019, 00:14
f2d12e3
Код
Авторство
О чём код?
#!/usr/bin/env bash IFS=: read -a GOPATH_ARRAY <<< "$GOPATH" GOPATH0=${GOPATH_ARRAY[0]} if [[ $# < 1 ]] || [[ $1 != "debug" ]] && [[ $1 != "storybook" ]]; then echo "Usage: buildAndroid.sh <debug|storybook>" exit 1 fi cd $GOPATH0/src/github.com/keybase/client/shared/android exec ./gradlew "assemble$1" -x bundleDebugJsAndAssets --stacktrace