Skip to content

Commit

Permalink
eh..
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Jul 31, 2024
1 parent a10bdce commit 92ae4d7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions external/ios/build_boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if [ -d "$BOOST_DIR_PATH" ]; then
echo "Boost directory already exists."
else
echo "Cloning Boost from $BOOST_URL"
mkdir -p $BOOST_DIR_PATH || true
cp -r "${MONEROC_DIR}/external/Apple-Boost-BuildScript" $BOOST_DIR_PATH
fi

Expand Down
4 changes: 2 additions & 2 deletions external/ios/build_openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ echo "Cloning Open SSL from - $OPEN_SSL_URL"
if [ -d "$OPEN_SSL_DIR_PATH" ]; then
echo "OpenSSL directory already exists."
else
echo "Cloning OpenSSL from $OPEN_SSL_URL"
mkdir -p "$OPEN_SSL_DIR_PATH" || true
cp -r "${MONEROC_DIR}/external/OpenSSL-for-iPhone" $OPEN_SSL_DIR_PATH
fi

exit 0
# Verify if the repository was cloned successfully.
if [ -d "$OPEN_SSL_DIR_PATH/.git" ]; then
echo "OpenSSL repository cloned successfully."
Expand Down
1 change: 1 addition & 0 deletions external/ios/build_sodium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if [ -d "$SODIUM_PATH" ]; then
echo "Sodium directory already exists."
else
echo "Cloning Sodium from $SODIUM_URL"
mkdir -p $SODIUM_PATH || true
cp -r "${MONEROC_DIR}/external/libsodium" $SODIUM_PATH
fi

Expand Down
1 change: 1 addition & 0 deletions external/ios/build_unbound.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ if [ -d "$UNBOUND_DIR_PATH" ]; then
echo "Unbound directory already exists."
else
echo "Cloning Unbound from $Unbound_URL"
mkdir -p ${UNBOUND_DIR_PATH} || true
cp -r "${MONEROC_DIR}/external/unbound" ${UNBOUND_DIR_PATH}
fi

Expand Down
1 change: 1 addition & 0 deletions external/ios/build_wownero_seed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ SEED_SRC_DIR="${EXTERNAL_IOS_SOURCE_DIR}/seed"
rm -rf "$SEED_SRC_DIR" > /dev/null

echo "[*] cloning $SEED_URL"
mkdir -p ${SEED_SRC_DIR} || true
cp -r "${MONEROC_DIR}/external/wownero-seed" ${SEED_SRC_DIR}
cd $SEED_SRC_DIR

Expand Down
1 change: 1 addition & 0 deletions external/ios/build_zmq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if [ -d "$ZMQ_PATH" ]; then
echo "ZeroMQ directory already exists."
else
echo "Cloning ZeroMQ from $ZeroMQ_URL"
mkdir -p $ZMQ_PATH || true
cp -r "${MONEROC_DIR}/external/libzmq" $ZMQ_PATH
fi

Expand Down

0 comments on commit 92ae4d7

Please sign in to comment.