forked from cncf/gitdm.archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclone_opentracing.sh
executable file
·21 lines (21 loc) · 1.31 KB
/
clone_opentracing.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
mkdir ~/dev/opentracing/ 2>/dev/null
# This list is from `cncf/velocity`:`BigQuery/query_cncf_repos.sql`
cd ~/dev/opentracing || exit 1
git clone https://github.com/opentracing/basictracer-csharp.git || exit 1
git clone https://github.com/opentracing/basictracer-go.git || exit 1
git clone https://github.com/opentracing/basictracer-javascript.git || exit 1
git clone https://github.com/opentracing/basictracer-python.git || exit 1
git clone https://github.com/opentracing/contrib.git || exit 1
git clone https://github.com/opentracing/opentracing-cpp.git || exit 1
git clone https://github.com/opentracing/opentracing-csharp.git || exit 1
git clone https://github.com/opentracing/opentracing-go.git || exit 1
git clone https://github.com/opentracing/opentracing-java.git || exit 1
git clone https://github.com/opentracing/opentracing-javascript.git || exit 1
git clone https://github.com/opentracing/opentracing-objc.git || exit 1
git clone https://github.com/opentracing/opentracing-python.git || exit 1
git clone https://github.com/opentracing/opentracing-ruby.git || exit 1
git clone https://github.com/opentracing/opentracing.github.io.git || exit 1
git clone https://github.com/opentracing/opentracing.io.git || exit 1
git clone https://github.com/opentracing/specification.git || exit 1
echo "All OpenTracing repos cloned"