Merge "Fix tox_install script"

This commit is contained in:
Zuul 2018-04-10 20:14:26 +00:00 committed by Gerrit Code Review
commit 378a966d38
1 changed files with 5 additions and 2 deletions

View File

@ -5,8 +5,11 @@
# default:
# pip install {opts} {packages}
cd /home/zuul/src/git.openstack.org/openstack/requirements
git checkout stable/pike
DIR=/home/zuul/src/git.openstack.org/openstack/requirements
if [ -d "$DIR" ]; then
cd $DIR
git checkout stable/pike
fi
set -e
set -x