mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-28 16:24:56 +01:00
16 lines
330 B
Bash
Executable File
16 lines
330 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}",
|
|
"debug": false,
|
|
"insecure" : false
|
|
}
|
|
END_OF_CREDS
|