[PATCH] git-submodule fixes for call to git config --get-regexp
From: Chris Larson <hidden>
Date: 2016-06-15 22:43:22
Two minor git-submodule fixes: * Escape !'s in the git config --get-regexp, so submodule paths can contain them. * Be more explicit about the value regex, otherwise things get confused if one submodule name is a prefix of another (since --get-regexp can return multiple values). Signed-off-by: Chris Larson <redacted>
--- git-submodule.sh.old 2007-07-20 10:13:22.578125000 -0700
+++ git-submodule.sh 2007-07-20 10:14:56.281250000 -0700@@ -46,7 +46,8 @@ get_repo_base() { # module_name() { - name=$(GIT_CONFIG=.gitmodules git config --get-regexp
'^submodule\..*\.path$' "$1" |
+ path=$(echo "$1" | sed -e 's/\!/\\!/g')
+ name=$(GIT_CONFIG=.gitmodules git config --get-regexp
'^submodule\..*\.path$' "^$path$" |
sed -nre 's/^submodule\.(.+)\.path .+$/\1/p')
test -z "$name" &&
die "No submodule mapping found in .gitmodules for path '$path'"
--
Chris Larson - clarson at kergoth dot com
Dedicated Engineer - MontaVista - clarson at mvista dot com
Core Developer/Architect - TSLib, BitBake, OpenEmbedded, OpenZaurus