Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit c5e4ac7

Browse files
committed
make die() quoting consistent with the rest of the code
1 parent c874411 commit c5e4ac7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/HTTP/Tiny.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,8 +1007,8 @@ sub _find_CA_file {
10071007
return $ca_bundle if -e $ca_bundle;
10081008
}
10091009

1010-
die "Couldn't find a CA bundle with which to verify the SSL certificate.\n"
1011-
. "Try installing Mozilla::CA from CPAN\n";
1010+
die qq/Couldn't find a CA bundle with which to verify the SSL certificate.\n/
1011+
. qq/Try installing Mozilla::CA from CPAN\n/;
10121012
}
10131013

10141014
sub _ssl_args {

0 commit comments

Comments
 (0)