Skip to content

Commit a536347

Browse files
committed
Stop running docker-entrypoint.sh if postgresql as it hangs
1 parent 9cdda61 commit a536347

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/checker.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ok !grep(/\.(?:cpanm|perl-cpm)/, @files), "$image_name: no cpanm|cpm directories
3636
my $entrypoint_is_executed;
3737
if (-e '/docker-entrypoint.sh' && $image_name !~ /chromedriver/) {
3838
my $entrypoint_sh = do { open my $fh, '<', '/docker-entrypoint.sh'; local $/; <$fh> };
39-
if ($entrypoint_sh =~ /mysql/ && $image_name !~ /(?:fedora23)/) {
39+
if ($entrypoint_sh =~ /mysql/ && $image_name !~ /(?:fedora23|postgresql)/) {
4040
my $entrypoint = `/docker-entrypoint.sh`;
4141
note $entrypoint;
4242
$entrypoint_is_executed = 1;

0 commit comments

Comments
 (0)