MySQL fix

This commit is contained in:
WolverinDEV 2019-05-28 10:58:16 +02:00
parent 596a096b4e
commit 3f96804cae
2 changed files with 11 additions and 1 deletions

2
.gitmodules vendored
View File

@ -47,7 +47,7 @@
[submodule "libraries/mysqlconnector"]
path = libraries/mysqlconnector
url = https://github.com/mysql/mysql-connector-cpp.git
branch = 8.0.12
checkout = 8.0.12
[submodule "libraries/boringssl"]
path = libraries/boringssl
url = https://boringssl.googlesource.com/boringssl

View File

@ -9,3 +9,13 @@ fi
git checkout ${BRANCH};
echo "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
'