Skip to content

Commit

Permalink
Fix syntax error when printing openssl version on windows
Browse files Browse the repository at this point in the history
We were failing to print the openssl version, but the rspec tests continued to
run.

    -e:1: syntax error, unexpected backslash
    puts \"OpenSSL Version - #{OpenSSL:...
         ^
  • Loading branch information
joshcooper committed May 29, 2024
1 parent 60192ff commit 8e85300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rspec_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
Get-ChildItem Env: | % { Write-Output "$($_.Key): $($_.Value)" }
# list current OpenSSL install
gem list openssl
ruby -ropenssl -e 'puts \"OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}\"; puts \"OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}\"'
ruby -ropenssl -e 'puts "OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}"; puts "OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}"'
Get-Content Gemfile.lock
ruby -v
gem --version
Expand Down

0 comments on commit 8e85300

Please sign in to comment.