We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa80c3f commit 4c21922Copy full SHA for 4c21922
1 file changed
bin/test_readme.pl
@@ -10,7 +10,7 @@
10
next if $line =~ /^\|(?:\-|image name)/;
11
$line =~ s/(^\|)|(\|$)//g;
12
$line =~ s/\*//g;
13
- $line =~ s/MariaDB //;
+ $line =~ s/(?:MariaDB|Postgres) //;
14
my ($image, $base, @rest) = split '\|', $line;
15
next if $image =~ /(?:openldap|chromedriver)/;
16
if ($image =~ /(?:addons|chromiumdriver|playwright)/) {
@@ -42,7 +42,7 @@
42
next;
43
}
44
my $wanted = $key;
45
- $wanted = '(?:mysql|mariadb)' if $key eq 'mysql';
+ $wanted = '(?:mysql|mariadb|postgresql)' if $key eq 'mysql';
46
my ($version) = $log =~ /$wanted exists \((.+?)\)/i;
47
is $version => $mapping{$image}{$key} => "$image has correct $key";
48
0 commit comments