Skip to content

Commit 8e85300

Browse files
committed
Fix syntax error when printing openssl version on windows
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:... ^
1 parent 60192ff commit 8e85300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rspec_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
Get-ChildItem Env: | % { Write-Output "$($_.Key): $($_.Value)" }
5959
# list current OpenSSL install
6060
gem list openssl
61-
ruby -ropenssl -e 'puts \"OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}\"; puts \"OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}\"'
61+
ruby -ropenssl -e 'puts "OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}"; puts "OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}"'
6262
Get-Content Gemfile.lock
6363
ruby -v
6464
gem --version

0 commit comments

Comments
 (0)