diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-02-22 12:28:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-02-22 12:28:26 -0800 |
commit | 070f6fed052ca0cf6625f6566d23c71530d7abf9 (patch) | |
tree | c57a80e0f3dcfee9c129f8a4252c5abb035c9f89 /git-submodule.sh | |
parent | f11f76b2bbcd23fe403744c055456a0bdf0981e7 (diff) | |
parent | 8196e728955a084303e99affff2ebc1120112516 (diff) | |
download | git-070f6fed052ca0cf6625f6566d23c71530d7abf9.tar.gz |
Merge branch 'ps/submodule-sanitize-path-upon-add'
"git submodule add" failed to squash "path/to/././submodule" to
"path/to/submodule".
* ps/submodule-sanitize-path-upon-add:
git-submodule.sh: fix '/././' path normalization
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 9245abfd42..36797c3c00 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -423,7 +423,7 @@ cmd_add() sed -e ' s|//*|/|g s|^\(\./\)*|| - s|/\./|/|g + s|/\(\./\)*|/|g :start s|\([^/]*\)/\.\./|| tstart |