mirror of
https://github.com/curl/curl.git
synced 2025-09-20 11:02:42 +03:00
cmdline-opts/gen.pl: trim off trailing spaces
This commit is contained in:
parent
c47b1eced7
commit
58206f0ef2
|
@ -210,8 +210,9 @@ sub single {
|
|||
}
|
||||
if($foot[0]) {
|
||||
print "\n";
|
||||
print @foot;
|
||||
print "\n";
|
||||
my $f = join("", @foot);
|
||||
$f =~ s/ +\z//; # remove trailing space
|
||||
print "$f\n";
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user