The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl
use strict;
use warnings;

# A hack to make test spin-up work.

use Cwd qw/ realpath /;
use FindBin;


my $bin = `which mogdbsetup`;
chomp $bin;

die "no mogdbsetup" unless $bin;
die "wrong mogdbsetup" if realpath($bin) eq realpath($FindBin::Bin);

exec($bin, @ARGV);
die $!;