fix slash-replacement in url
This commit is contained in:
parent
8c67fc1998
commit
41b520aba2
1 changed files with 2 additions and 2 deletions
|
@ -84,10 +84,10 @@ fi
|
||||||
if ${MYSHELLCONFIG_GIT_SUBMODULES_UPDATE-${MYSHELLCONFIG_GIT_SUBMODULES_UPDATE_DEFAULT-true}}; then
|
if ${MYSHELLCONFIG_GIT_SUBMODULES_UPDATE-${MYSHELLCONFIG_GIT_SUBMODULES_UPDATE_DEFAULT-true}}; then
|
||||||
logdebug "update submodules"
|
logdebug "update submodules"
|
||||||
rc=0
|
rc=0
|
||||||
|
srv="${MYSHELLCONFIG_GIT_SUBMODULES_SERVER-${MYSHELLCONFIG_GIT_SUBMODULES_SERVER_DEFAULT}}"
|
||||||
$SGIT config --file=.gitmodules -l | \
|
$SGIT config --file=.gitmodules -l | \
|
||||||
grep url= | \
|
grep url= | \
|
||||||
awk -F "=" -v srv="${MYSHELLCONFIG_GIT_SUBMODULES_SERVER-${MYSHELLCONFIG_GIT_SUBMODULES_SERVER_DEFAULT}}" \
|
awk -F "=" -v srv="${srv%/}${srv:+/}" \
|
||||||
'{gsub(/^.*github.com/,srv,$2); print $1" "$2}' | \
|
'{gsub(/^.*github.com/,srv,$2); print $1" "$2}' | \
|
||||||
while read a b; do
|
while read a b; do
|
||||||
logdebug "$SGIT config --file=.gitmodules ${a} ${b}"
|
logdebug "$SGIT config --file=.gitmodules ${a} ${b}"
|
||||||
|
|
Loading…
Reference in a new issue