tap-as-a-service-tempest-pl.../tools/tox_install.sh
YAMAMOTO Takashi 97460ae286 Use tox_install convention
Copied from networking-midonet.

Closes-Bug: #1646436
Change-Id: Ic66367eb797bddd3b7e0ffd2a65c0a3f719507f1
2016-12-01 19:28:19 +09:00

17 lines
265 B
Bash
Executable File

#! /bin/sh
set -e
DIR=$(dirname $0)
${DIR}/tox_install_project.sh neutron neutron $*
CONSTRAINTS_FILE=$1
shift
install_cmd="pip install"
if [ $CONSTRAINTS_FILE != "unconstrained" ]; then
install_cmd="$install_cmd -c$CONSTRAINTS_FILE"
fi
$install_cmd -U $*