mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
17 lines
364 B
Bash
Executable File
17 lines
364 B
Bash
Executable File
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src
|
|
|
|
# Create the Evergreen API credentials
|
|
cat > .restconfig.json << END_OF_CREDS
|
|
{
|
|
"baseurl": "${blackduck_url}",
|
|
"username": "${blackduck_username}",
|
|
"password": "${blackduck_password}",
|
|
"token": "${blackduck_token}",
|
|
"debug": false,
|
|
"insecure" : false
|
|
}
|
|
END_OF_CREDS
|