mirror of https://github.com/docker/compose.git
10 lines
135 B
Plaintext
10 lines
135 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||
|
pip install tox==2.1.1
|
||
|
else
|
||
|
pip install --user tox==2.1.1
|
||
|
fi
|