summaryrefslogtreecommitdiff
path: root/reportdesign/qa/complex/reportdesign/mysql-connector-exists.pl
blob: 6eefe2bb063955a0efa321c6de087f296b8e9e01 (plain)
1
2
3
4
5
6
7
8
9
eval 'exec perl -wS $0 ${1+\"$@\"}'
    if 0;

my $sMySQLConnector = $ARGV[0];
if (! -e $sMySQLConnector)
{
    exit 1;
}
exit 0;