DOCKER-DEV: Add git submodule init

This commit is contained in:
Ryan McGuire 2019-07-09 20:51:01 -04:00
parent d7028903a5
commit a3a25b8fa6
2 changed files with 5 additions and 0 deletions

View file

@ -44,6 +44,7 @@ LBRY_GIT=$HOME/git/vendor/lbryio/
mkdir -p $LBRY_GIT
git clone https://github.com/lbryio/lbry-android.git $LBRY_GIT
cd $LBRY_GIT/lbry-android
git submodule update --init --recursive
```
Install a bash alias to the [scripts/lbry-android.sh](scripts/lbry-android.sh)

View file

@ -108,6 +108,10 @@
return 1
else
exe git clone $LBRY_ANDROID_REPO $LBRY_ANDROID_HOME
(
cd $LBRY_ANDROID_HOME
exe git submodule update --init --recursive
)
echo ""
echo "lbry-android clone complete."
echo "LBRY_ANDROID_HOME=$LBRY_ANDROID_HOME"