#!/bin/bash
set -eu
if [[ "${1:-}" == "install" ]]; then
  # Just install all wheels from the source repository.
  # It's too hard to figure out what was actually requested, and
  # this is pretty quick anyway.
  exec pip install $PYTHON_WHEELS/*.whl
fi

exec pip "$@"
