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