Skip to content

Commit

Permalink
fix escaping
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Wrock <[email protected]>
  • Loading branch information
mwrock committed Oct 29, 2024
1 parent b9d403c commit 9c773f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if($IsLinux) {
$sslCertFileCheck = "test -f `$SSL_CERT_FILE"
$sslCertFilePrint = "echo `$SSL_CERT_FILE"
$sslCacheCertFileCheck = "test -f '/hab/cache/ssl/$e2e_certname'"
$sslCertFileNotSetCheck = "test `$SSL_CERT_FILE = $(hab pkg path core/cacerts)/ssl/certs/cacert.pem"
$sslCertFileNotSetCheck = "test `$SSL_CERT_FILE = `$(hab pkg path core/cacerts)/ssl/certs/cacert.pem"
} else {
$sslCertFileCheck = "exit (!(Test-Path `$env:SSL_CERT_FILE))"
$sslCertFilePrint = "`$env:SSL_CERT_FILE.Replace('\','/')"
Expand Down

0 comments on commit 9c773f2

Please sign in to comment.