Commit b1971b06 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Use getcwd() because it works under MSYS but `pwd` doesn't.

parent a5319427
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -14,13 +14,16 @@
# not contain symbolic links and that the parent of / is never referenced.
# Apart from this, this script should be able to handle even the most
# pathological cases.
#

use Cwd;

my $from = shift;
my @files = @ARGV;

my @from_path = split(/[\\\/]/, $from);
my $pwd = `pwd`;
chop($pwd);
my $pwd = getcwd();
chomp($pwd);
my @pwd_path = split(/[\\\/]/, $pwd);

my @to_path = ();