Skip to content

Commit 7983df4

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 bd7153c commit 7983df4

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
@@ -55,7 +55,7 @@ jobs:
5555
Get-ChildItem Env: | % { Write-Output "$($_.Key): $($_.Value)" }
5656
# list current OpenSSL install
5757
gem list openssl
58-
ruby -ropenssl -e 'puts \"OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}\"; puts \"OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}\"'
58+
ruby -ropenssl -e 'puts "OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}"; puts "OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}"'
5959
Get-Content Gemfile.lock
6060
ruby -v
6161
gem --version

0 commit comments

Comments
 (0)