Commit 3f89b902 authored by Magnus Svensson's avatar Magnus Svensson

Print 'cygpath -m' command if it fails

parent 51aeb556
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment