1
mirror of https://github.com/m2049r/xmrwallet synced 2025-04-28 07:33:36 +02:00
2018-10-10 21:12:18 +02:00

22 lines
369 B
Bash
Executable File

#!/usr/bin/env bash
set -e
source script/env.sh
cd $EXTERNAL_LIBS_BUILD_ROOT
url="https://github.com/m2049r/monero"
version="release-v0.13.0-monerujo"
if [ ! -d "monero" ]; then
git clone ${url} -b ${version}
cd monero
git submodule update --recursive --init
else
cd monero
git checkout ${version}
git pull
git submodule update --recursive --init
fi