From ce8faef45b9eb5ca33ebc846a4028a756afbf8b7 Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Fri, 12 May 2023 10:38:39 -0700 Subject: [PATCH] if is unnecessary because we have set -e --- runtime-library/create_xcframework.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/runtime-library/create_xcframework.sh b/runtime-library/create_xcframework.sh index 1babe21c..a656762a 100755 --- a/runtime-library/create_xcframework.sh +++ b/runtime-library/create_xcframework.sh @@ -143,9 +143,7 @@ function merge_static_libraries() { mv iree libiree.a libtool -static -o iree libiree.a libflatcc_parsing.a libcpuinfo.a \ >"$build_dir"/merge_static_libraries.log 2>&1 - if $?; then - echo "Merged for $label successfully" - fi + echo "Merged for $label successfully" ) }