mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
fix "rename" output
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
This commit is contained in:
parent
e7e470c9b8
commit
f5ac835a58
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ sub validate_input {
|
|||
if ($input =~ m/(^|\/)(|\.|\.\.)($|\/)/) {
|
||||
return undef;
|
||||
}
|
||||
if ($input =~ m/[^a-zA-Z0-9_\x80-\xff\ \.\/\-\+\#\~\%]/) {
|
||||
if ($input =~ m/[^a-zA-Z0-9_\x80-\xff\ \t\.\/\-\+\#\~\%]/) {
|
||||
return undef;
|
||||
}
|
||||
return $input;
|
||||
|
|
Loading…
Reference in a new issue