Skip to content

Commit

Permalink
split for do in several lines
Browse files Browse the repository at this point in the history
  • Loading branch information
BillCarsonFr committed May 22, 2024
1 parent f7e06d0 commit ee040ab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bindings/apple/build_crypto_xcframework.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ mkdir -p ${HEADERS_DIR}
mv ${GENERATED_DIR}/*.h ${HEADERS_DIR}

# Rename and merge the modulemap files into a single file to the right place
for f in ${GENERATED_DIR}/*.modulemap; do cat $f; echo; done > ${HEADERS_DIR}/module.modulemap
for f in ${GENERATED_DIR}/*.modulemap
do
cat $f; echo;
done > ${HEADERS_DIR}/module.modulemap
rm ${GENERATED_DIR}/*.modulemap

# Move source files to the right place
Expand Down

0 comments on commit ee040ab

Please sign in to comment.