Skip to content

Commit

Permalink
Add synchronous option to trunk push in build_podspec.sh (apple#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
glbrntt authored Jun 10, 2020
1 parent a44a343 commit e14f8eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_podspec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ EOF
echo "Uploading ${tmpdir}/${target}.podspec"
# CNIOBoringSSL emits build warnings
if [ "$target" == "CNIOBoringSSL" ]; then
pod trunk push --allow-warnings "${tmpdir}/${target}.podspec"
pod trunk push --allow-warnings --synchronous "${tmpdir}/${target}.podspec"
else
pod trunk push "${tmpdir}/${target}.podspec"
pod trunk push --synchronous "${tmpdir}/${target}.podspec"
fi

fi
Expand Down

0 comments on commit e14f8eb

Please sign in to comment.