diff options
| author | cyan <cyjan@mrcyjanek.net> | 2024-08-01 12:58:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-01 12:58:41 +0200 |
| commit | f2e150bf89fcb413ad7ad362c6fa34a3ebd43a99 (patch) | |
| tree | 330b11f851747df51b13c578035ec9d08055061f /external/ios/build_wownero_seed.sh | |
| parent | 0737e1a7a1335b77b9bd90505241d5647eb7fd3e (diff) | |
update ios scripts to not clone dependencies at build time (#25)
* update ios scripts to not clone dependencies at runtime
* fix ios build scripts
Diffstat (limited to 'external/ios/build_wownero_seed.sh')
| -rwxr-xr-x | external/ios/build_wownero_seed.sh | 7 |
1 files changed, 3 insertions, 4 deletions
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 |
