Fixed bug with artifacts of old functionality

This commit is contained in:
Elia Farin
2024-08-10 00:58:13 -05:00
parent 076180f4cb
commit ae03d04d15

View File

@@ -88,11 +88,11 @@ sub transfer {
if (length $verbose) {
#print "in verbose section";
print "\n\nTransferring object $xfernum of $linesnum\n\n";
system("rsync", "-vvv", "-$flags", "$dir/$line", "$user\@$host:$dest");
system("rsync", "-vvv", "-$flags", "$line", "$user\@$host:$dest");
} else {
#print "in non-verbose section";
print "\n\nTransferring object $xfernum of $linesnum\n\n";
system("rsync", "-$flags", "$dir/$line", "$user\@$host:$dest");
system("rsync", "-$flags", "$line", "$user\@$host:$dest");
}
}
close $path;