mirror of
https://github.com/curl/curl.git
synced 2026-07-27 00:47:17 +03:00
scripts: drop redundant double-quotes: "$var" -> $var (Perl)
Closes #21009
This commit is contained in:
parent
f45bf74b5a
commit
d5014a2b95
33 changed files with 161 additions and 161 deletions
|
|
@ -1161,7 +1161,7 @@ logmsg "RUN: $cmd\n" if($verbose);
|
|||
#
|
||||
if($sshdid =~ /OpenSSH-Windows/) {
|
||||
# Fake pidfile for ssh server on Windows.
|
||||
if(open(my $out, ">", "$pidfile")) {
|
||||
if(open(my $out, ">", $pidfile)) {
|
||||
print $out $$ . "\n";
|
||||
close($out);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue