mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 14:09:50 +00:00
34 lines
582 B
Bash
34 lines
582 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -x -e
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
|
||
|
|
||
|
if [[ ! -d "monero_c" ]];
|
||
|
then
|
||
|
git clone https://github.com/mrcyjanek/monero_c --branch rewrite-wip
|
||
|
cd monero_c
|
||
|
git checkout cd90f3bcd0349759030751ec7ce84eec6ee80c43
|
||
|
git reset --hard
|
||
|
git submodule update --init --force --recursive
|
||
|
./apply_patches.sh monero
|
||
|
./apply_patches.sh wownero
|
||
|
else
|
||
|
cd monero_c
|
||
|
fi
|
||
|
|
||
|
if [[ ! -f "monero/.patch-applied" ]];
|
||
|
then
|
||
|
./apply_patches.sh monero
|
||
|
fi
|
||
|
|
||
|
if [[ ! -f "wownero/.patch-applied" ]];
|
||
|
then
|
||
|
./apply_patches.sh wownero
|
||
|
fi
|
||
|
cd ..
|
||
|
|
||
|
echo "monero_c source prepared".
|