Browse Source

Print 'cygpath -m' command if it fails

pull/47/merge
Magnus Svensson 17 years ago
parent
commit
c955eb6b68
  1. 4
      mysql-test/lib/My/Platform.pm

4
mysql-test/lib/My/Platform.pm

@ -69,8 +69,8 @@ sub mixed_path {
if (IS_CYGWIN){
return unless defined $path;
my $cmd= "cygpath -m $path";
print "$cmd\n";
$path= `$cmd`;
$path= `$cmd` or
print "Failed to run: '$cmd', $!\n";
chomp $path;
}
return $path;

Loading…
Cancel
Save