findfileconflicts: Quote version and release in YAML output

Otherwise they get interpreted as numbers and weird stuff happens.
This commit is contained in:
Fabian Vogt 2024-02-22 15:15:13 +01:00
parent 8329809782
commit ac4d4047ba

View File

@ -446,8 +446,8 @@ for my $tc (sort keys %tocheck) {
my @sp1 = split(' ', $p1);
my @sp2 = split(' ', $p2);
print "- between:\n";
print " - [$sp1[0], $sp1[1], $sp1[2], $sp1[3]]\n";
print " - [$sp2[0], $sp2[1], $sp2[2], $sp2[3]]\n";
print " - [$sp1[0], '$sp1[1]', '$sp1[2]', $sp1[3]]\n";
print " - [$sp2[0], '$sp2[1]', '$sp2[2]', $sp2[3]]\n";
print " conflicts: |-\n";
print " $_\n" for (@con);
}