loci/scripts/fetch_wheels.sh

17 lines
359 B
Bash
Executable File

#!/bin/bash
set -ex
if [[ "${PYTHON3}" == "no" ]]; then
python=python2
else
python=python3
fi
${python} $(dirname $0)/fetch_wheels.py
mkdir -p /tmp/wheels/
# Exclude all files starting with '.' as these can be control files for
# AUFS which have special meaning on AUFS backed file stores.
tar xf /tmp/wheels.tar.gz --exclude='.*' -C /tmp/wheels/