Subject: | abs2rel fails on Cygwin |
Calling File::Spec->abs2rel($0) doesn't prepend the current drive under
Cygwin.
So it returns /path rather than C:/path
I think File::Spec::Cygwin should have its own _cwd sub:
sub _cwd {
require Cwd;
Cwd::getdcwd();
}
thanks
Clint