mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
9 lines
327 B
Bash
Executable File
9 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${TOXENV}" == "py34" ] || [ "${TOXENV}" == "py35" ]; then
|
|
source /etc/lsb-release
|
|
echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | tee -a /etc/apt/sources.list.d/rethinkdb.list
|
|
wget -qO- https://download.rethinkdb.com/apt/pubkey.gpg | apt-key add -
|
|
apt-get update -qq
|
|
fi
|