Skip to content

Commit

Permalink
Exclude curve25519_64_msvc.c
Browse files Browse the repository at this point in the history
Quick fix for #1592
  • Loading branch information
JasonGross committed Apr 19, 2023
1 parent 457cb5e commit e097a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/ci/test-fiat-c-boringssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pushd boringssl >/dev/null
echo "::group::Patching BoringSSL"
({
set -ex
( cd third_party/fiat && for i in *.h; do cp "${SUBCOMPONENT_PATH}/${i/.h/.c}" "$i" || exit $?; done ) || exit $?
( cd third_party/fiat && for i in *.h; do if [ "$i" != "curve25519_64_msvc.h" ]; then cp "${SUBCOMPONENT_PATH}/${i/.h/.c}" "$i" || exit $?; fi; done ) || exit $?
( cd third_party/fiat && git --no-pager diff )
}) || exit $?
echo "::endgroup::"
Expand Down

0 comments on commit e097a87

Please sign in to comment.