dosage/scripts/install_pil.sh
2013-12-10 08:48:32 +01:00

9 lines
189 B
Bash
Executable file

#!/bin/sh
# Install PIL in Travis CI environment for Python 2.x builds.
set -e
set -u
if python -c 'import sys; sys.exit(0 if sys.hexversion<0x03000000 else 1)'; then
pip install PIL
fi