From f2e150bf89fcb413ad7ad362c6fa34a3ebd43a99 Mon Sep 17 00:00:00 2001 From: cyan Date: Thu, 1 Aug 2024 12:58:41 +0200 Subject: update ios scripts to not clone dependencies at build time (#25) * update ios scripts to not clone dependencies at runtime * fix ios build scripts --- external/ios/build_wownero_seed.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'external/ios/build_wownero_seed.sh') diff --git a/external/ios/build_wownero_seed.sh b/external/ios/build_wownero_seed.sh index fc68327..7672db5 100755 --- a/external/ios/build_wownero_seed.sh +++ b/external/ios/build_wownero_seed.sh @@ -6,15 +6,14 @@ set -x -e SEED_VERSION=0.3.0 SEED_SRC_DIR="${EXTERNAL_IOS_SOURCE_DIR}/seed" -SEED_URL="https://git.wownero.com/wowlet/wownero-seed.git" -SEED_SHA_HEAD="d3f68be347facfeebbd8f68fd74982c705cb917b" rm -rf "$SEED_SRC_DIR" > /dev/null echo "[*] cloning $SEED_URL" -git clone --branch ${SEED_VERSION} ${SEED_URL} ${SEED_SRC_DIR} +mkdir -p ${SEED_SRC_DIR} || true +rm -rf ${SEED_SRC_DIR} +cp -r "${MONEROC_DIR}/external/wownero-seed" ${SEED_SRC_DIR} cd $SEED_SRC_DIR -git reset --hard $SEED_SHA_HEAD patch -p1 < ../../../../../wownero-seed-0001-fix-duplicate-symbol-error.patch -- cgit v1.2.3