diff --git a/git-mv.perl b/git-mv.perl index 17e35b0ac0..a21d87eea8 100755 --- a/git-mv.perl +++ b/git-mv.perl @@ -54,6 +54,8 @@ () my $argCount = scalar @ARGV; if (-d $ARGV[$argCount-1]) { $dstDir = $ARGV[$argCount-1]; + # remove any trailing slash + $dstDir =~ s/\/$//; @srcArgs = @ARGV[0..$argCount-2]; foreach $src (@srcArgs) {