From ae03d04d155ef1fd346d7a4efdcc4e41e3fa1796 Mon Sep 17 00:00:00 2001 From: Elia Farin Date: Sat, 10 Aug 2024 00:58:13 -0500 Subject: [PATCH] Fixed bug with artifacts of old functionality --- src/transfer.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transfer.pl b/src/transfer.pl index cb02951..4ac45cb 100755 --- a/src/transfer.pl +++ b/src/transfer.pl @@ -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;