mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
modified build scripts for android
This commit is contained in:
parent
a6b6a54c08
commit
8c7d87b4dd
2 changed files with 11 additions and 10 deletions
|
@ -6,3 +6,4 @@
|
|||
./build_sodium.sh
|
||||
./build_zmq.sh
|
||||
./build_haven.sh
|
||||
./build_zano.sh
|
||||
|
|
|
@ -6,16 +6,16 @@ set -o xtrace
|
|||
ZANO_SRC_DIR=${WORKDIR}/zano
|
||||
ZANO_CHECKOUT_ID=master
|
||||
|
||||
#git clone --recursive https://github.com/hyle-team/zano.git ${ZANO_SRC_DIR}
|
||||
cd $ZANO_SRC_DIR
|
||||
#git checkout ${ZANO_CHECKOUT_ID}
|
||||
#git submodule init
|
||||
#git submodule update
|
||||
#git pull -r
|
||||
#if [ $? -ne 0 ]; then
|
||||
# echo "Failed to git pull -r"
|
||||
# exit 1
|
||||
#fi
|
||||
git clone --recursive https://github.com/hyle-team/zano.git ${ZANO_SRC_DIR}
|
||||
#cd $ZANO_SRC_DIR
|
||||
git checkout ${ZANO_CHECKOUT_ID}
|
||||
git submodule init
|
||||
git submodule update
|
||||
git pull -r
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to git pull -r"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for arch in "aarch" "aarch64" "i686" "x86_64"
|
||||
do
|
||||
|
|
Loading…
Reference in a new issue