We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9915cae commit d294b68Copy full SHA for d294b68
1 file changed
utils/init-submodules-release.sh
@@ -3,13 +3,18 @@
3
source ./safeCommandsSet.sh
4
5
if git submodule status 2>&1 | grep -iq "fatal: Not a git repository (or any of the parent directories): .git"; then
6
+
7
safe_cd "$(dirname "$0")"/../external/
-git clone git@github.com:google/googletest.git
8
-safe_cd googletest/
9
-git checkout release-1.8.0
+git clone --no-checkout https://github.com/nlohmann/json.git
10
+safe_cd json/
11
+git checkout v3.11.3
12
safe_cd -
-git clone git@github.com:nlohmann/json.git
13
14
+git clone --no-checkout https://github.com/pboettch/json-schema-validator.git
15
safe_cd json/
-git checkout v3.4.0
16
+git checkout 2.3.0
17
18
19
+else git submodule update --init;
20
fi
0 commit comments