mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
python3 -m coverage erase
|
|
if [ $(uname) == "Darwin" ]; then
|
|
export CPPFLAGS="-I/usr/local/miniconda/include";
|
|
fi
|
|
make clean
|
|
make install-coverage
|