1
mirror of https://github.com/m2049r/xmrwallet synced 2025-03-25 16:12:44 +01:00
m2049r 41290f51fd
Upgrade to monero v0.16.0.0 ()
* upgrade to monero core v0.16.0.0

* hearts for node favs
2020-06-01 10:02:22 +02:00

22 lines
371 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.16.0.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