File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,10 @@ BUILD_LOG_PATH="${BASEDIR}/build_libldk.log"
20
20
# echo -n "" > $BUILD_LOG_PATH
21
21
touch $BUILD_LOG_PATH
22
22
23
- echo " \n\nPlatform name: ${PLATFORM_NAME} " >> $BUILD_LOG_PATH
23
+ # create two newlines at the beginning
24
+ echo " " >> $BUILD_LOG_PATH
25
+
26
+ echo " Platform name: ${PLATFORM_NAME} " >> $BUILD_LOG_PATH
24
27
echo " Configuration: ${CONFIGURATION} " >> $BUILD_LOG_PATH
25
28
echo " LLVM Target Triple Suffix: ${LLVM_TARGET_TRIPLE_SUFFIX} " >> $BUILD_LOG_PATH
26
29
@@ -93,4 +96,7 @@ if [[ ${ACTION:-build} = "build" || $ACTION = "install" ]]; then
93
96
94
97
mkdir -p " ${BUILT_PRODUCTS_DIR} "
95
98
xcrun --sdk $PLATFORM_NAME lipo -create " ${EXECUTABLES[@]} " -output " ${PROJECT_DIR} /${TARGET_NAME} .a"
99
+
100
+ # print a newline at the end
101
+ echo " " >> $BUILD_LOG_PATH
96
102
fi
You can’t perform that action at this time.
0 commit comments