mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
* CW-934 Implement passphrase creation for zano * Update monero_c dependency to latest commit Fix issue with zano keys not showing during sync Fix delays when invoking read only commands in zano Fix extra padding above passphrase Reduced lag during app use
30 lines
592 B
Bash
Executable file
30 lines
592 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
if [[ ! -d "monero_c/.git" ]];
|
|
then
|
|
git clone https://github.com/mrcyjanek/monero_c --branch master monero_c
|
|
cd monero_c
|
|
git checkout 65608c09e9093f1cd42c6afd8e9131016c82574b
|
|
git reset --hard
|
|
git submodule update --init --force --recursive
|
|
./apply_patches.sh monero
|
|
./apply_patches.sh wownero
|
|
./apply_patches.sh zano
|
|
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".
|