mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
23426d6ab2
GitOrigin-RevId: 603a9fb8e00f358033bdbb541281226577a31676
18 lines
447 B
Bash
18 lines
447 B
Bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
for i in {1..5}; do
|
|
git clone https://x-access-token:${github_token}@github.com/10gen/jstestfuzz.git && RET=0 && break || RET=$? && sleep 5
|
|
echo "Failed to clone github.com:10gen/jstestfuzz.git, retrying..."
|
|
done
|
|
|
|
if [ $RET -ne 0 ]; then
|
|
echo "Failed to clone git@github.com:10gen/jstestfuzz.git"
|
|
exit $RET
|
|
fi
|