Merge "Handle incorrect project names more carefully."

This commit is contained in:
Jenkins 2015-06-09 17:50:57 +00:00 committed by Gerrit Code Review
commit 470e0f7734
1 changed files with 4 additions and 1 deletions

View File

@ -22,9 +22,12 @@ fi
if [ "$OWN_PROJECT" == "requirements" ] ; then
INITIAL_COMMIT_MSG="Updated from global requirements"
TOPIC="openstack/requirements"
else
elif [ "$OWN_PROJECT" == "openstack-manuals" ] ; then
INITIAL_COMMIT_MSG="Updated from openstack-manuals"
TOPIC="openstack/openstack-manuals"
else
echo "Unknown project $1" >2
exit 1
fi
USERNAME="proposal-bot"
ALL_SUCCESS=0