Commit c955eb6b authored by Magnus Svensson's avatar Magnus Svensson
Browse files

Print 'cygpath -m' command if it fails

parent 623a1086
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;