Fix cli-package name check

Replace from -eq to ==,
since this comparison is string (i.e. "gnocchi").

Ref.
https://www.gnu.org/software/bash/manual/bash.html#Bash-Conditional-Expressions

Change-Id: If1ed25cee35d6e735c47dca3eea53a3a062ab024
Closes-Bug: #1515842
This commit is contained in:
Atsushi SAKAI 2015-11-13 11:34:42 +09:00
parent 648336763a
commit f193ca03f0
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ source .venv/bin/activate
pip install --upgrade openstack-doc-tools
pip install --upgrade pbr
if [[ $project -eq 'gnocchi' ]]; then
if [[ $project == 'gnocchi' ]]; then
pip install --upgrade ${project}client
else
pip install --upgrade python-${project}client