1
0
mirror of https://github.com/fspc/dswim.git synced 2025-02-22 00:23:28 -05:00

Sends new arguments to fastswim and imswim so that the right directories are

used.
This commit is contained in:
freesource 2001-10-13 00:39:09 +00:00
parent 4fc38f64a1
commit f54509d9bc

View File

@ -630,11 +630,11 @@ sub md {
} }
close(TRANSFER); close(TRANSFER);
if (!$commands->{"lowmem"}) { if (!$commands->{"lowmem"}) {
system $fastswim, "--transfer", $argument2, $tmp; system $fastswim, "--transfer", $argument2, $tmp, $main::home;
} }
else { else {
print STDERR "Gathering the file(s)/dir(s)\n"; print STDERR "Gathering the file(s)/dir(s)\n";
system $imswim, $argument2, $tmp; system $imswim, $argument2, $tmp, $main::home;
system $slowswim, $tmp, $sort; system $slowswim, $tmp, $sort;
} }
} }