MySQL fix
This commit is contained in:
parent
596a096b4e
commit
3f96804cae
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -47,7 +47,7 @@
|
|||||||
[submodule "libraries/mysqlconnector"]
|
[submodule "libraries/mysqlconnector"]
|
||||||
path = libraries/mysqlconnector
|
path = libraries/mysqlconnector
|
||||||
url = https://github.com/mysql/mysql-connector-cpp.git
|
url = https://github.com/mysql/mysql-connector-cpp.git
|
||||||
branch = 8.0.12
|
checkout = 8.0.12
|
||||||
[submodule "libraries/boringssl"]
|
[submodule "libraries/boringssl"]
|
||||||
path = libraries/boringssl
|
path = libraries/boringssl
|
||||||
url = https://boringssl.googlesource.com/boringssl
|
url = https://boringssl.googlesource.com/boringssl
|
||||||
|
@ -9,3 +9,13 @@ fi
|
|||||||
git checkout ${BRANCH};
|
git checkout ${BRANCH};
|
||||||
echo "git pull origin ${BRANCH}"
|
echo "git pull origin ${BRANCH}"
|
||||||
git pull origin ${BRANCH}'
|
git pull origin ${BRANCH}'
|
||||||
|
|
||||||
|
git submodule foreach -q --recursive '
|
||||||
|
echo "Updating $name";
|
||||||
|
CHECKOUT=$(git config -f $toplevel/.gitmodules submodule.$name.checkout)
|
||||||
|
if [ ! -z ${CHECKOUT} ]; then
|
||||||
|
git checkout ${CHECKOUT};
|
||||||
|
echo "Checking out ${CHECKOUT} for $name"
|
||||||
|
fi
|
||||||
|
'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user