#!/bin/bash set -x -e cd "$(dirname "$0")" if [[ ! -d "monero_c" ]]; then git clone https://github.com/mrcyjanek/monero_c --branch master cd monero_c git checkout 35ded9142e3915c7cdf6d64c7a0f0d797fcac8c7 git reset --hard git submodule update --init --force --recursive ./apply_patches.sh monero ./apply_patches.sh wownero else cd monero_c fi for coin in monero wownero zano; do if [[ ! -f "$coin/.patch-applied" ]]; then ./apply_patches.sh $coin fi done cd .. echo "monero_c source prepared".