Merge "Don't install scripts straight to /usr/local/bin"

This commit is contained in:
Jenkins 2014-01-15 20:31:15 +00:00 committed by Gerrit Code Review
commit 7312346aba
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,8 @@ for client in $client_install_list; do
elif [ -e tools/pip-requires ]; then
pip install -r tools/pip-requires
fi
python setup.py develop --script-dir /usr/local/bin
python setup.py develop
ln -s /opt/stack/venvs/$repo/bin/$client /usr/local/bin/$client
popd
set +u