From ee040aba6009cafcfd234981bcf96140a87267a4 Mon Sep 17 00:00:00 2001 From: Valere Date: Tue, 21 May 2024 13:24:38 +0200 Subject: [PATCH] split for do in several lines --- bindings/apple/build_crypto_xcframework.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bindings/apple/build_crypto_xcframework.sh b/bindings/apple/build_crypto_xcframework.sh index b10c6d26218..98c7b657e7d 100755 --- a/bindings/apple/build_crypto_xcframework.sh +++ b/bindings/apple/build_crypto_xcframework.sh @@ -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