mirror of
https://github.com/docker/compose.git
synced 2026-06-25 02:28:24 +00:00
10 lines
176 B
Bash
Executable file
10 lines
176 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
pip install tox==2.1.1
|
|
else
|
|
sudo pip install --upgrade pip tox==2.1.1 virtualenv
|
|
pip --version
|
|
fi
|