diff options
-rwxr-xr-x | git-mv.perl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-mv.perl b/git-mv.perl index 17e35b0ac..a21d87eea 100755 --- a/git-mv.perl +++ b/git-mv.perl @@ -54,6 +54,8 @@ my ($src, $dst, $base, $dstDir); 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) { |