Skip to content

Commit

Permalink
Build to all OpenSSL versions (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
baentsch committed Oct 18, 2022
1 parent 7c6ce54 commit b0fd3a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/oqs-openssl-cmssign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fi

openssl_version=$($OPENSSL_APP version)

if [[ "$openssl_version" = "OpenSSL 3.0."* ]]; then
if [[ "$openssl_version" == "OpenSSL 3.0."* ]]; then
echo "Skipping CMS test for OpenSSL 3.0"
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/oqs-openssl-cmsverify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fi

openssl_version=$($OPENSSL_APP version)

if [[ "$openssl_version" = "OpenSSL 3.0."* ]]; then
if [[ "$openssl_version" == "OpenSSL 3.0."* ]]; then
echo "Skipping CMS test for OpenSSL 3.0"
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/oqsprovider-cmsverify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi

openssl_version=$($OPENSSL_APP version)

if [[ "$openssl_version" = "OpenSSL 3.0."* ]]; then
if [[ "$openssl_version" == "OpenSSL 3.0."* ]]; then
echo "Skipping CMS test for OpenSSL 3.0"
exit 0
fi
Expand Down

0 comments on commit b0fd3a6

Please sign in to comment.